Skip to content

Commit 9652d3f

Browse files
committed
fix: resolve ruff lint errors in vinted tests
Split combined import test into separate methods to fix F811 (redefinition of unused _) and remove unnecessary noqa directives.
1 parent c5d9d69 commit 9652d3f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_vinted.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,6 +914,8 @@ def test_vinted_market_importable(self) -> None:
914914
def test_vinted_pagination_importable(self) -> None:
915915
from scrapebadger.vinted import VintedPagination as _ # noqa: F401
916916

917-
def test_vinted_top_level_importable(self) -> None:
917+
def test_vinted_item_summary_top_level_importable(self) -> None:
918918
from scrapebadger import VintedItemSummary as _ # noqa: F401
919+
920+
def test_vinted_price_top_level_importable(self) -> None:
919921
from scrapebadger import VintedPrice as _ # noqa: F401

0 commit comments

Comments
 (0)