Skip to content

Commit d53447a

Browse files
committed
Make mypy happy
1 parent 6f82190 commit d53447a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

uwuinator/uwuinator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import os
44
import math
55
import shutil
6+
import typing
67

78
"""
89
UwUinator 5.0 copies the same image multiple times to a specified path using async I/O.
@@ -47,7 +48,7 @@ def __init__(self, path: str, file: str, amount: int | bool) -> None:
4748
self.t1 = time.time()
4849
self.minute = 0
4950
self.counter = 0
50-
self.speeds = []
51+
self.speeds: typing.List[float] = []
5152
self.path_space = shutil.disk_usage(self.path).free
5253

5354
with open(self.file, "rb") as f:

0 commit comments

Comments
 (0)