Skip to content

Commit 04f9288

Browse files
committed
Enable eradicable code lint
1 parent 7034ae9 commit 04f9288

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ select = [
1414
# pytest style
1515
"PT",
1616
# eradicate commented code
17-
# "ERA",
17+
"ERA",
1818
# ruff lint
1919
# "RUF",
2020
]

tests/flask/migrations/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
# other values from the config, defined by the needs of env.py,
2626
# can be acquired:
27-
# my_important_option = config.get_main_option("my_important_option")
27+
# my_important_option = config.get_main_option("my_important_option") # noqa
2828
# ... etc.
2929

3030

tests/flask/test_flask.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ def version_callback(path):
122122

123123

124124
def test_heartbeat(app, dockerflow):
125-
# app.debug = True
126125
response = app.test_client().get("/__heartbeat__")
127126
assert response.status_code == 200
128127

0 commit comments

Comments
 (0)