Skip to content

Commit 69b9307

Browse files
committed
style: remove f-strings
1 parent 4c1690e commit 69b9307

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/load_chem_xref.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
)
4040
connected = True
4141
except SocketError:
42-
print(f"Could not connect to database, retrying in 2 seconds...")
42+
print("Could not connect to database, retrying in 2 seconds...")
4343
time.sleep(2)
4444

4545
print("Reading and parsing 'chem_xref.tsv'")
@@ -69,7 +69,7 @@
6969
)
7070

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

7474
for ref in tqdm(references, mininterval=0.2):
7575
xref_node, mnx_node = ref

0 commit comments

Comments
 (0)