src/eric7/WebBrowser/Download/DownloadUtilities.py

branch
eric7
changeset 9221
bf71ee032bb4
parent 9209
b99e7fd55fd3
child 9653
e67609152c5e
diff -r e9e7eca7efee -r bf71ee032bb4 src/eric7/WebBrowser/Download/DownloadUtilities.py
--- a/src/eric7/WebBrowser/Download/DownloadUtilities.py	Wed Jul 13 11:16:20 2022 +0200
+++ b/src/eric7/WebBrowser/Download/DownloadUtilities.py	Wed Jul 13 14:55:47 2022 +0200
@@ -13,59 +13,65 @@
 def timeString(timeRemaining):
     """
     Module function to format the given time.
-    
+
     @param timeRemaining time to be formatted
     @type float
     @return time string
     @rtype str
     """
     if timeRemaining < 10:
-        return QCoreApplication.translate(
-            "DownloadUtilities", "few seconds remaining")
-    elif timeRemaining < 60:    # < 1 minute
+        return QCoreApplication.translate("DownloadUtilities", "few seconds remaining")
+    elif timeRemaining < 60:  # < 1 minute
         seconds = int(timeRemaining)
         return QCoreApplication.translate(
-            "DownloadUtilities", "%n seconds remaining", "", seconds)
+            "DownloadUtilities", "%n seconds remaining", "", seconds
+        )
     elif timeRemaining < 3600:  # < 1 hour
         minutes = int(timeRemaining / 60)
         return QCoreApplication.translate(
-            "DownloadUtilities", "%n minutes remaining", "", minutes)
+            "DownloadUtilities", "%n minutes remaining", "", minutes
+        )
     else:
         hours = int(timeRemaining / 3600)
         return QCoreApplication.translate(
-            "DownloadUtilities", "%n hours remaining", "", hours)
+            "DownloadUtilities", "%n hours remaining", "", hours
+        )
 
 
 def dataString(size):
     """
     Module function to generate a formatted size string.
-    
+
     @param size size to be formatted
     @type int
     @return formatted data string
     @rtype str
     """
     if size < 1024:
-        return QCoreApplication.translate(
-            "DownloadUtilities", "{0:.1f} Bytes").format(size)
+        return QCoreApplication.translate("DownloadUtilities", "{0:.1f} Bytes").format(
+            size
+        )
     elif size < 1024 * 1024:
         size /= 1024
-        return QCoreApplication.translate(
-            "DownloadUtilities", "{0:.1f} KiB").format(size)
+        return QCoreApplication.translate("DownloadUtilities", "{0:.1f} KiB").format(
+            size
+        )
     elif size < 1024 * 1024 * 1024:
         size /= 1024 * 1024
-        return QCoreApplication.translate(
-            "DownloadUtilities", "{0:.2f} MiB").format(size)
+        return QCoreApplication.translate("DownloadUtilities", "{0:.2f} MiB").format(
+            size
+        )
     else:
         size /= 1024 * 1024 * 1024
-        return QCoreApplication.translate(
-            "DownloadUtilities", "{0:.2f} GiB").format(size)
+        return QCoreApplication.translate("DownloadUtilities", "{0:.2f} GiB").format(
+            size
+        )
 
 
 def speedString(speed):
     """
     Module function to generate a formatted speed string.
-    
+
     @param speed speed to be formatted
     @type float
     @return formatted speed string
@@ -73,20 +79,23 @@
     """
     if speed < 0:
         return QCoreApplication.translate("DownloadUtilities", "Unknown speed")
-    
-    speed /= 1024       # kB
+
+    speed /= 1024  # kB
     if speed < 1024:
-        return QCoreApplication.translate(
-            "DownloadUtilities", "{0:.1f} KiB/s").format(speed)
-    
-    speed /= 1024       # MB
+        return QCoreApplication.translate("DownloadUtilities", "{0:.1f} KiB/s").format(
+            speed
+        )
+
+    speed /= 1024  # MB
     if speed < 1024:
-        return QCoreApplication.translate(
-            "DownloadUtilities", "{0:.2f} MiB/s").format(speed)
-    
-    speed /= 1024       # GB
+        return QCoreApplication.translate("DownloadUtilities", "{0:.2f} MiB/s").format(
+            speed
+        )
+
+    speed /= 1024  # GB
     if speed < 1024:
-        return QCoreApplication.translate(
-            "DownloadUtilities", "{0:.2f} GiB/s").format(speed)
-    
+        return QCoreApplication.translate("DownloadUtilities", "{0:.2f} GiB/s").format(
+            speed
+        )
+
     return ""

eric ide

mercurial