Fixed OptionMaybe bool with no arguments
- Fixed an issue where
Input.OptionMaybe<bool>("--flag")
would not translate--flag
toSome true
unless it had a boolean argument value (--flag true
).
Input.OptionMaybe<bool>("--flag")
would not translate --flag
to Some true
unless it had a boolean argument value (--flag true
).