Skip to content
Snippets Groups Projects
Commit e11a61f6 authored by Jacques Grelet's avatar Jacques Grelet
Browse files

remove some print

parent 13d54158
No related branches found
No related tags found
No related merge requests found
...@@ -365,12 +365,10 @@ class FileExtractor: ...@@ -365,12 +365,10 @@ class FileExtractor:
sql['date_time'] = dt.strptime(dateTime, dtf) sql['date_time'] = dt.strptime(dateTime, dtf)
sql['julian_day'] = tools.dt2julian(sql['date_time']) sql['julian_day'] = tools.dt2julian(sql['date_time'])
#print(f"insert station: {sql}")
# insert or query return last cursor, get the value of the primary key # insert or query return last cursor, get the value of the primary key
# with lastrowid # with lastrowid
ret = self.db.insert("station", sql) ret = self.db.insert("station", sql)
pk = ret.lastrowid pk = ret.lastrowid
#print(f"Return: {pk}")
continue continue
# end of if process_header: # end of if process_header:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment