-
Notifications
You must be signed in to change notification settings - Fork 74
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
Update storm cmdargs 'type' value to allow any model type name #1923
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1923 +/- ##
==========================================
+ Coverage 93.42% 96.45% +3.02%
==========================================
Files 139 139
Lines 26508 26513 +5
==========================================
+ Hits 24765 25573 +808
+ Misses 1743 940 -803
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
…t/synapse into storm-argparse-time
…t/synapse into storm-argparse-time
@@ -1838,7 +1864,7 @@ class LimitCmd(Cmd): | |||
|
|||
def getArgParser(self): | |||
pars = Cmd.getArgParser(self) | |||
pars.add_argument('count', type=int, help='The maximum number of nodes to yield.') | |||
pars.add_argument('count', type='int', help='The maximum number of nodes to yield.') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is a breaking change we need to be aware of
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should only apply to python storm commands ( since pure storm commands had to be serializeable ) so i'd call it an internal change, but yea. def need to be aware.
No description provided.