Skip to content

Commit dafe6ef

Browse files
fix(python): restore original parameter names in TestDiskStorage
Co-Authored-By: [email protected] <[email protected]>
1 parent 7e4bb64 commit dafe6ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

1111

1212
class TestDiskStorage(DiskStorage):
13-
def read_disk(self, _: str, __: CallStack) -> Optional[Snapshot]:
13+
def read_disk(self, sub: str, call: CallStack) -> Optional[Snapshot]:
1414
return None
1515

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

0 commit comments

Comments
 (0)