You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
E.g. a task with signature def foo(myarg_=True): will try to be processed as if its flag variant was --myarg- due to the straightforward dash-to-underscore transformation.
These should just have the leading/trailing underscore ignored for purposes of flag transformations, since they're usually added simply to get around Python local-namespace issues and don't make much sense as literal flag names anyway.
The text was updated successfully, but these errors were encountered:
E.g. a task with signature
def foo(myarg_=True):
will try to be processed as if its flag variant was--myarg-
due to the straightforward dash-to-underscore transformation.These should just have the leading/trailing underscore ignored for purposes of flag transformations, since they're usually added simply to get around Python local-namespace issues and don't make much sense as literal flag names anyway.
The text was updated successfully, but these errors were encountered: