Skip to content

Commit

Permalink
Added flake8-print
Browse files Browse the repository at this point in the history
* removed stray print
* added flake8-print to catch this going forward
  • Loading branch information
fzakaria committed Sep 27, 2023
1 parent a98a956 commit 0c6b4b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ dev = [
"black >= 23.7.0",
"isort >= 5.12.0",
"flake8 >= 6.1.0",
"flake8-print >= 5.0.0",
"pyright >= 1.1.325",
"pytest >= 7.4.0",
"mypy >= 1.0.0",
Expand Down
1 change: 0 additions & 1 deletion sqlelf/elf.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ def register_generator(
If so we rename the table with a prefix 'raw' and then create a temp table"""
original_table_name = table_name
if generator_flag in cache_flags:
print("here")
table_name = f"raw_{table_name}"

apsw.ext.make_virtual_module(connection, table_name, generator)
Expand Down

0 comments on commit 0c6b4b8

Please sign in to comment.