Skip to content

Commit

Permalink
Merge pull request #842 from rodrigogansobarbieri/antelope_fix_pep8
Browse files Browse the repository at this point in the history
[stable/antelope] Fix pep8 error in assert type comparison
  • Loading branch information
ajkavanagh authored Sep 4, 2023
2 parents e2bd71b + 5b0a3e6 commit 95d7bcc
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 95d7bcc

Please sign in to comment.