Skip to content

Commit cb4cd17

Browse files
committed
Suppress autoflake warnings for networking fixtures imports
1 parent a488cd2 commit cb4cd17

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

tests/integration/networking/test_networking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
exec_test_command,
1212
)
1313
from tests.integration.linodes.helpers import DEFAULT_REGION
14-
from tests.integration.networking.fixtures import (
14+
from tests.integration.networking.fixtures import ( # noqa: F401
1515
create_reserved_ip,
1616
get_command_heads_and_vals,
1717
test_linode_id,

tests/integration/tags/test_tags.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
exec_test_command,
99
get_random_text,
1010
)
11-
from tests.integration.networking.fixtures import create_reserved_ip
11+
from tests.integration.networking.fixtures import ( # noqa: F401
12+
create_reserved_ip,
13+
)
1214

1315

1416
@pytest.fixture(scope="session")

0 commit comments

Comments
 (0)