Skip to content

Commit a89008d

Browse files
committed
Fix code formatting
1 parent 775c357 commit a89008d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/grimp/adaptors/caching.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ def make_data_file_name(
3737
# Use a hash algorithm with a limited size to avoid cache filenames that are too long
3838
# the filesystem, which can happen if there are more than a few root packages
3939
# being analyzed.
40-
safe_unicode_identifier = hashlib.blake2b(bytes_identifier, digest_size=20, usedforsecurity=False).hexdigest()
40+
safe_unicode_identifier = hashlib.blake2b(
41+
bytes_identifier, digest_size=20, usedforsecurity=False
42+
).hexdigest()
4143
return f"{safe_unicode_identifier}.data.json"
4244

4345
@classmethod

0 commit comments

Comments
 (0)