Skip to content

Commit 2362ae2

Browse files
committed
fix: remove noqa directive for uuid4 import in test_table_not_found
1 parent 90171d9 commit 2362ae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tests/test_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ def test_table_exist(ctx):
547547

548548

549549
def test_table_not_found(ctx):
550-
from uuid import uuid4 # noqa: PLC0415
550+
from uuid import uuid4
551551

552552
with pytest.raises(KeyError):
553553
ctx.table(f"not-found-{uuid4()}")

0 commit comments

Comments
 (0)