Get rid of warnings from MS Code.
David Blume

David Blume commited on 2020-12-27 11:20:32
Showing 2 changed files, with 2 additions and 2 deletions.

... ...
@@ -52,7 +52,7 @@ def run():
52 52
     # Start doing work
53 53
     print_queue.put(['Starting up'])
54 54
     worker_threads = []
55
-    for i in range(10):
55
+    for _ in range(10):
56 56
         t = threading.Thread(target=worker)
57 57
         worker_threads.append(t)
58 58
         t.start()
... ...
@@ -28,7 +28,7 @@ def main(debug: bool):
28 28
     counter.counter.run()
29 29
     v_print("Running sitesize...")
30 30
     sitesize.sitesize.run()
31
-    print(f'Done.  That took {time.time() - start_time:1.2f}s.')
31
+    print(f'Done in {localdir}.  That took {time.time() - start_time:1.2f}s.')
32 32
 
33 33
 
34 34
 if __name__ == '__main__':
35 35