Spaces:
Running
Running
Update app.py
Browse filesfixed total speech count
app.py
CHANGED
@@ -119,7 +119,7 @@ def genUsageStats(do_reset=False):
|
|
119 |
for line in dataList:
|
120 |
(dud, len) = line.split(':')
|
121 |
userSpeech += int(len)
|
122 |
-
totalSpeech += int(
|
123 |
accessOk = True
|
124 |
break
|
125 |
except:
|
|
|
119 |
for line in dataList:
|
120 |
(dud, len) = line.split(':')
|
121 |
userSpeech += int(len)
|
122 |
+
totalSpeech += int(userSpeech)
|
123 |
accessOk = True
|
124 |
break
|
125 |
except:
|