-
Notifications
You must be signed in to change notification settings - Fork 14.3k
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
Introduce flake8-implicit-str-concat
plugin to static checks
#23873
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -201,7 +201,7 @@ def __init__( | |
key_options = [key_path, key_secret_name, keyfile_dict] | ||
if len([x for x in key_options if x]) > 1: | ||
raise AirflowException( | ||
"The `keyfile_dict`, `key_path`, and `key_secret_name` fields" | ||
"The `keyfile_dict`, `key_path`, and `key_secret_name` fields " | ||
"are all mutually exclusive. Please provide only one value." | ||
Comment on lines
-204
to
205
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this automatically caught? Very impressing if so. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was part of fixing some concatenation in the |
||
) | ||
self.key_path = key_path | ||
|
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.
@alexott I took care of fixing this since it was missed in the initial cleanup.
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.
Thank you