Skip to content

Commit

Permalink
Make mypy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
WhoIsConch committed May 17, 2022
1 parent 6f82190 commit d53447a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion uwuinator/uwuinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import os
import math
import shutil
import typing

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

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

0 comments on commit d53447a

Please sign in to comment.