Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Nov 28, 2021
1 parent 0c6f729 commit 32b12ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pylint/testutils/functional/test_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import configparser
from os.path import basename, exists, join
from typing import Dict, List, Tuple, Union


def parse_python_version(ver_str: str) -> Tuple[int, ...]:
Expand Down
2 changes: 1 addition & 1 deletion pylint/testutils/lint_module_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from pylint.lint import PyLinter
from pylint.message.message import Message
from pylint.testutils.constants import _EXPECTED_RE, _OPERATORS, UPDATE_OPTION
from pylint.testutils.functional import (
from pylint.testutils.functional.test_file import ( # need to import from functional.test_file to avoid cyclic import
FunctionalTestFile,
NoFileError,
parse_python_version,
Expand Down

0 comments on commit 32b12ff

Please sign in to comment.