Преглед изворни кода

Remove redundant (and wrong) class parameters

Raphael Michel пре 10 година
родитељ
комит
2c7ed24796
1 измењених фајлова са 1 додато и 3 уклоњено
  1. 1 3
      youtube_dl/utils.py

+ 1 - 3
youtube_dl/utils.py

@@ -576,11 +576,9 @@ class ContentTooShortError(Exception):
     download is too small for what the server announced first, indicating
     the connection was probably interrupted.
     """
-    # Both in bytes
-    downloaded = None
-    expected = None
 
     def __init__(self, downloaded, expected):
+        # Both in bytes
         self.downloaded = downloaded
         self.expected = expected