Skip to content

Commit d5c6321

Browse files
style(python): add noqa comments for unused test parameters
Co-Authored-By: [email protected] <[email protected]>
1 parent dafe6ef commit d5c6321

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

python/selfie-lib/tests/coroutines/test_CacheSelfie.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010

1111

1212
class TestDiskStorage(DiskStorage):
13-
def read_disk(self, sub: str, call: CallStack) -> Optional[Snapshot]:
13+
def read_disk( # noqa: ARG002
14+
self,
15+
sub: str, # noqa: ARG002
16+
call: CallStack, # noqa: ARG002
17+
) -> Optional[Snapshot]:
1418
return None
1519

1620
def write_disk(self, actual: Snapshot, sub: str, call: CallStack):

0 commit comments

Comments
 (0)