Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
dspinellis committed Oct 14, 2023
1 parent 8fb9c5c commit a91cb3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/alexandria3k/data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ def create_matched_tables(matched_tables):

if debug.enabled("dump-matched"):
csv_writer = csv.writer(debug.get_output(), delimiter="\t")
for rec in self.vdb.execute("SELECT * FROM temp_matched"):
for rec in self.cursor.execute("SELECT * FROM temp_matched"):
csv_writer.writerow(rec)

perf.log("Matched table creation")
Expand Down

0 comments on commit a91cb3c

Please sign in to comment.