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=
108108 chained-comparison, # TODO: Simplify chained comparison between operands
109109 simplifiable-if-statement, # TODO: Simplify ifs
110110 too-many-branches, # TODO: Simplify or ignore as appropriate
111- superfluous-parens, # TODO: Remove unnecessary parens
112111 missing-docstring, # TODO: Fix missing docstring
113112
114113[REPORTS]
Original file line number Diff line number Diff line change @@ -698,7 +698,7 @@ def _aws_credentials_available_in_metadata_service():
698698 user_agent = session .user_agent (),
699699 )
700700 )
701- return not ( instance_metadata_provider .load () is None )
701+ return not instance_metadata_provider .load () is None
702702
703703
704704def _write_json_file (filename , content ):
You can’t perform that action at this time.
0 commit comments