-
Notifications
You must be signed in to change notification settings - Fork 782
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
nits: sort imports, doc typos, minor cleanups #661
base: master
Are you sure you want to change the base?
Conversation
@ryan-williams Thanks for the PR. We would be glad to get this PR and #218 + #323 going once we have merged #580 which is a significant change on master. |
rebased this, and looks like #580 was merged, so maybe this is ready for another look. |
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.
Minor comments. Should be good to go (after running it through black). I just did a review of the code, didn't run it.
metaflow/decorators.py
Outdated
kv_regex = r',(?=[\s\w]+=)' | ||
kvs = re.split(kv_regex, quote_stripped) | ||
attrs = dict( | ||
[ x.strip() for x in kv.split('=', 1) ] |
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.
@savingoyal : I think this is correct but the , 1 is different from the previous code. I think it should work. Not sure why we need the positive lookahead here though (it was present before too)
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.
fd3ed51
to
4ffc2be
Compare
4d8314f
to
d116d04
Compare
"Python tests on ubuntu-latest" failed, GHA log says:
I downloaded the logs and see this toward the end of
Not sure what that is about. investigating… Update: this was due to the |
6e6df6e
to
d31bb5a
Compare
I think this is ready for review |
74d9efa
to
f1a8e95
Compare
going through some older PR's, this seems like a straightforward one to push through. Would you still be available for rebasing it against the latest |
factored out of #612