Skip to content

Commit

Permalink
Ignore unused fixture imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtzmn committed Jun 30, 2022
1 parent 3a6438a commit c81bd34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyteal/ast/pragma_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
from tests.mock_version import mock_version
from tests.mock_version import mock_version # noqa: F401

import pyteal as pt

Expand Down
4 changes: 3 additions & 1 deletion pyteal/pragma/pragma_test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import pytest
import pkg_resources
from tests.mock_version import mock_version
from tests.mock_version import (
mock_version,
) # noqa: F401; pylint: disable=unused-variable

import pyteal as pt
from pyteal.pragma.pragma import __convert_pep440_compiler_version
Expand Down

0 comments on commit c81bd34

Please sign in to comment.