We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a6438a commit c81bd34Copy full SHA for c81bd34
pyteal/ast/pragma_test.py
@@ -1,5 +1,5 @@
1
import pytest
2
-from tests.mock_version import mock_version
+from tests.mock_version import mock_version # noqa: F401
3
4
import pyteal as pt
5
pyteal/pragma/pragma_test.py
@@ -1,6 +1,8 @@
import pkg_resources
+from tests.mock_version import (
+ mock_version,
+) # noqa: F401; pylint: disable=unused-variable
6
7
8
from pyteal.pragma.pragma import __convert_pep440_compiler_version
0 commit comments