Spaces:
Runtime error
Runtime error
Commit ·
0a68038
1
Parent(s): 2dbcb16
added csv
Browse files- persistStorage.py +1 -1
persistStorage.py
CHANGED
|
@@ -24,7 +24,7 @@ TIMEZONE_OBJ = pytz.timezone(TIME_ZONE)
|
|
| 24 |
CACHE_TIME_EXPIRE = 20 #days
|
| 25 |
|
| 26 |
def getNewCsvFilePath():
|
| 27 |
-
fileName = "ResultCsv_" + "".join([str(random.randint(0,9)) for i in range(3)])
|
| 28 |
fileNameWithpath = os.path.join(RESULT_CSV_DIR, fileName)
|
| 29 |
return fileNameWithpath
|
| 30 |
|
|
|
|
| 24 |
CACHE_TIME_EXPIRE = 20 #days
|
| 25 |
|
| 26 |
def getNewCsvFilePath():
|
| 27 |
+
fileName = "ResultCsv_" + "".join([str(random.randint(0,9)) for i in range(3)]) + ".csv"
|
| 28 |
fileNameWithpath = os.path.join(RESULT_CSV_DIR, fileName)
|
| 29 |
return fileNameWithpath
|
| 30 |
|