Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set var: Optional[Type] to None via CLI #348

Open
anqixu opened this issue Mar 14, 2025 · 0 comments
Open

Set var: Optional[Type] to None via CLI #348

anqixu opened this issue Mar 14, 2025 · 0 comments

Comments

@anqixu
Copy link

anqixu commented Mar 14, 2025

Let me start by saying that SimpleParsing is an amazingly useful library!

This question has been asked previously, but I haven't seen a direct line of discussion.

Consider the following use case:

@dataclass
class ProcessFlow:
  do_step: Optional[FlowParams] = FlowParams()
$ ./run.py --do_step=None  # or =null

The above syntax has the downside that, given var: Optional[str], it would cause a contention between passing in the string keyword is used to represent None, versus the string literal "None". In this edge case, we can consider preferring e.g. None over "None".

What do you guys think? @lebrice?

Many thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant