Skip to content

Commit

Permalink
fixed whitespace error in testTimestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
brje01 committed Dec 5, 2023
1 parent 7a25ac4 commit 8e6b3ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lwreg/test_lwreg.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def testTimestamp(self):
time.sleep(2)
utils.register(smiles='CCCC', config=self._config)
curs = cn.cursor()
d = curs.execute("select molregno, timestamp from orig_data order by molregno asc")
d = curs.execute("select molregno, timestamp from orig_data order by molregno asc")
timestamps = []
for row in d:
timestamps.append(datetime.strptime(row[1], "%Y-%m-%d %H:%M:%S"))
Expand Down

0 comments on commit 8e6b3ed

Please sign in to comment.