-
Notifications
You must be signed in to change notification settings - Fork 25
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
Allow strings in Python interface for Client.run_script, Client.run_script_multiGPU #407
Conversation
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.
I think maybe you misunderstood the point of this PR. The idea was to add support for single strings while maintaining existing support for lists. In most places, it looks like you've deleted support for lists.
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.
Definite improvement, but a few more things to sort out and then this can be merged
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.
A few more tweaks and we're good to go
Codecov Report
@@ Coverage Diff @@
## develop #407 +/- ##
===========================================
+ Coverage 78.38% 78.43% +0.04%
===========================================
Files 97 97
Lines 7204 7200 -4
===========================================
Hits 5647 5647
+ Misses 1557 1553 -4
|
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.
Thanks for all your hard work on this one!
Allow strings in python interface for run_script (#363 ) This PR merges the following to develop: [ committed by @amandarichardsonn ] |
Previously, users could only pass lists of strings into the run_script methods in Python. This was inconvenient because many users have scripts that only have single inputs and outputs. Users are now able to pass in a single string to these methods. [ committed by @amandarichardsonn ] [ reviewed by @billschereriii ]
This PR merges the following to develop