Skip to content

Commit 693c655

Browse files
committed
pylint fix for Disk.filename unused arguments
1 parent 24fadab commit 693c655

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

‎diskcache/core.py‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ def filename(self, key=UNKNOWN, value=UNKNOWN):
304304
:param value: value for item (default UNKNOWN)
305305
306306
"""
307+
# pylint: disable=unused-argument
307308
hex_name=codecs.encode(os.urandom(16), 'hex').decode('utf-8')
308309
sub_dir=op.join(hex_name[:2], hex_name[2:4])
309310
name=hex_name[4:] +'.val'

0 commit comments

Comments
(0)