File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,6 @@ disable=
108
108
chained-comparison, # TODO: Simplify chained comparison between operands
109
109
simplifiable-if-statement, # TODO: Simplify ifs
110
110
too-many-branches, # TODO: Simplify or ignore as appropriate
111
- superfluous-parens, # TODO: Remove unnecessary parens
112
111
missing-docstring, # TODO: Fix missing docstring
113
112
114
113
[REPORTS]
Original file line number Diff line number Diff line change @@ -698,7 +698,7 @@ def _aws_credentials_available_in_metadata_service():
698
698
user_agent = session .user_agent (),
699
699
)
700
700
)
701
- return not ( instance_metadata_provider .load () is None )
701
+ return not instance_metadata_provider .load () is None
702
702
703
703
704
704
def _write_json_file (filename , content ):
You can’t perform that action at this time.
0 commit comments