Skip to content

Commit

Permalink
fix pycodestyle error
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronkaplan committed Nov 22, 2023
1 parent 32569be commit 474371c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsers/sysdiagnose-networkextension.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def parseplist(file):
output = {'objects': []}

for object in objects:
if type(object) == str:
if isinstance(object,str):
output['objects'].append(object)

return output
Expand Down

0 comments on commit 474371c

Please sign in to comment.