Remove the unnecessary debug file size prints (oops)

This commit is contained in:
Ryszard Knop 2024-11-08 22:03:51 +01:00
parent 0e088603f9
commit 9b019463b0

View File

@ -335,7 +335,6 @@ class GameDownloader:
downloaded_size = downloaded_file_stat.st_size
content_size = self.get_decompressed_content_size(target_path)
print("expected", expected_size, "downloaded", downloaded_size, "content", content_size)
if (
all(x is not None for x in (target_path, expected_size, downloaded_size))