Skip to content

Commit

Permalink
refact: remove useless import
Browse files Browse the repository at this point in the history
  • Loading branch information
sfermigier committed Nov 5, 2024
1 parent c1833a6 commit 0d673c6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ lint.extend-ignore = [
"E402", # Module level import not at top of file
"E501", # line too long
"E741", # Ambiguous variable name
"F401", # 'module' imported but unused
# "F401", # 'module' imported but unused
"F841", # Local variable `...` is assigned to but never used
"FURB113", # Use `x.extend(...)` instead of repeatedly calling `x.append()`
#
Expand Down
1 change: 0 additions & 1 deletion tests/services/test_preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from typing import TYPE_CHECKING, cast

import pytest
from devtools import debug
from flask_login import current_user, login_user
from pytest import fixture

Expand Down

0 comments on commit 0d673c6

Please sign in to comment.