We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d50b24f commit 55d6e74Copy full SHA for 55d6e74
.pylintrc
@@ -108,7 +108,6 @@ disable=
108
chained-comparison, # TODO: Simplify chained comparison between operands
109
simplifiable-if-statement, # TODO: Simplify ifs
110
too-many-branches, # TODO: Simplify or ignore as appropriate
111
- superfluous-parens, # TODO: Remove unnecessary parens
112
missing-docstring, # TODO: Fix missing docstring
113
114
[REPORTS]
src/sagemaker/local/image.py
@@ -698,7 +698,7 @@ def _aws_credentials_available_in_metadata_service():
698
user_agent=session.user_agent(),
699
)
700
701
- return not (instance_metadata_provider.load() is None)
+ return not instance_metadata_provider.load() is None
702
703
704
def _write_json_file(filename, content):
0 commit comments