Skip to content

Commit d229d72

Browse files
committed
Fix typing annotation
1 parent 280c71a commit d229d72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcachesim/synthetic_reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def get_read_pos(self) -> float:
182182
"""Get current read position"""
183183
return float(self.current_pos)
184184

185-
def get_working_set_size(self) -> Tuple[int, int]:
185+
def get_working_set_size(self) -> tuple[int, int]:
186186
"""Calculate working set size"""
187187
wss_obj, wss_byte = 0, 0
188188
if self.current_pos > 0:

0 commit comments

Comments
 (0)