Skip to content

Commit c81bd34

Browse files
committed
Ignore unused fixture imports
1 parent 3a6438a commit c81bd34

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyteal/ast/pragma_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import pytest
2-
from tests.mock_version import mock_version
2+
from tests.mock_version import mock_version # noqa: F401
33

44
import pyteal as pt
55

pyteal/pragma/pragma_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import pytest
22
import pkg_resources
3-
from tests.mock_version import mock_version
3+
from tests.mock_version import (
4+
mock_version,
5+
) # noqa: F401; pylint: disable=unused-variable
46

57
import pyteal as pt
68
from pyteal.pragma.pragma import __convert_pep440_compiler_version

0 commit comments

Comments
 (0)