Browse Source

remove enumerate

Jens Keim 5 years ago
parent
commit
6422994d67
1 changed files with 1 additions and 2 deletions
  1. 1 2
      code/Core/Statistics.py

+ 1 - 2
code/Core/Statistics.py

@@ -233,8 +233,7 @@ class Statistics:
         inverted_table = {}
         inverted_table["Interval count: "] = 0
 
-        #maybe enumerate is the problem
-        for i, name in enumerate(column_names):
+        for name in column_names:
             if name in pretty_names.keys():
                 name = pretty_names[name]
             inverted_table[name] = []