-
Notifications
You must be signed in to change notification settings - Fork 367
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
Fix parentheses in connection_helpers #3338
base: master
Are you sure you want to change the base?
Fix parentheses in connection_helpers #3338
Conversation
Previously, one_to_one_cspec was a boolean if isinstance(conn_spec, dict), and a string otherwise. This was obviously a mistake. Note that everywhere further in _process_input_nodes() one_to_one_cspec is always used within an if clause, thus expecting it to be boolean.
3869b56
to
e81ce39
Compare
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.
Joint review. Looks good to us. Thanks for your contribution! 👍
Hi Alex, I fixed the formatting for Black. This is automatically done if you start to use the |
The unrelated warnings of pylint are handled in #3339 . |
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.
Cheers!
The reason of Issue #3337 seems to be just forgotten parentheses.