Skip to content

Commit

Permalink
Merge pull request #843 from rodrigogansobarbieri/zed_fix_pep8
Browse files Browse the repository at this point in the history
[stable/zed] Fix pep8 error in assert type comparison
  • Loading branch information
ajkavanagh authored Sep 7, 2023
2 parents 11e77ce + 452988f commit a92a8a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charmhelpers/fetch/snap.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def _snap_exec(commands):
:param commands: List commands
:return: Integer exit code
"""
assert type(commands) == list
assert type(commands) is list

retry_count = 0
return_code = None
Expand Down

0 comments on commit a92a8a4

Please sign in to comment.