Skip to content

Commit

Permalink
Fix linting.
Browse files Browse the repository at this point in the history
Signed-off-by: gw <[email protected]>
  • Loading branch information
gw committed Aug 20, 2024
1 parent c26a4c5 commit 0ce13bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/podman_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,8 +554,8 @@ def _get_args_containerfile_hash(self):

should_hash_args_containerfile = (
context_has_containerfile or
self.build.get('file') != None or
self.build.get('container_file') != None
self.build.get('file') is not None or
self.build.get('container_file') is not None
)

if should_hash_args_containerfile:
Expand Down

0 comments on commit 0ce13bb

Please sign in to comment.