Skip to content

Commit

Permalink
style: Apply black formatting (#119)
Browse files Browse the repository at this point in the history
* Format with black.
  • Loading branch information
matthewfeickert authored Jun 17, 2024
1 parent ddb000b commit 23d598d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packtivity/statecontexts/posixfs_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@ def state_hash(self):
return: SHA1 hash
"""
# hash the upstream / input state
dep_checksums = [
dirhash(d, "sha1") for d in self.readonly if os.path.isdir(d)
]
dep_checksums = [dirhash(d, "sha1") for d in self.readonly if os.path.isdir(d)]

# hash out writing state
state_checksums = [
Expand Down

0 comments on commit 23d598d

Please sign in to comment.