We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 775c357 commit a89008dCopy full SHA for a89008d
1 file changed
src/grimp/adaptors/caching.py
@@ -37,7 +37,9 @@ def make_data_file_name(
37
# Use a hash algorithm with a limited size to avoid cache filenames that are too long
38
# the filesystem, which can happen if there are more than a few root packages
39
# being analyzed.
40
- safe_unicode_identifier = hashlib.blake2b(bytes_identifier, digest_size=20, usedforsecurity=False).hexdigest()
+ safe_unicode_identifier = hashlib.blake2b(
41
+ bytes_identifier, digest_size=20, usedforsecurity=False
42
+ ).hexdigest()
43
return f"{safe_unicode_identifier}.data.json"
44
45
@classmethod
0 commit comments