Skip to content

Commit

Permalink
Fix linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
SkrrtBacharach authored and gw committed Aug 14, 2024
1 parent c1ab52e commit 589f1d4
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 @@ -604,8 +604,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 589f1d4

Please sign in to comment.