Skip to content

Commit

Permalink
style: remove f-strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed May 26, 2020
1 parent 4c1690e commit 69b9307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/load_chem_xref.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
)
connected = True
except SocketError:
print(f"Could not connect to database, retrying in 2 seconds...")
print("Could not connect to database, retrying in 2 seconds...")
time.sleep(2)

print("Reading and parsing 'chem_xref.tsv'")
Expand Down Expand Up @@ -69,7 +69,7 @@
)

print(f"Loaded {len(references)} cross-references")
print(f"Starting database inserts. This may take several hours.")
print("Starting database inserts. This may take several hours.")

for ref in tqdm(references, mininterval=0.2):
xref_node, mnx_node = ref
Expand Down

0 comments on commit 69b9307

Please sign in to comment.