anumaurya114exp commited on
Commit
0a68038
·
1 Parent(s): 2dbcb16

added csv

Browse files
Files changed (1) hide show
  1. 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