Browse Source

fix mypy errors

pull/1/head
Brett Langdon 5 years ago
parent
commit
a56ba18838
Signed by: brettlangdon GPG Key ID: A70042D88B95AA2B
2 changed files with 5 additions and 1 deletions
  1. +4
    -0
      .mypy.ini
  2. +1
    -1
      tests/base.py

+ 4
- 0
.mypy.ini View File

@ -0,0 +1,4 @@
[mypy]
[mypy-pytest]
ignore_missing_imports = True

+ 1
- 1
tests/base.py View File

@ -4,7 +4,7 @@ import unittest
class BaseTest(unittest.TestCase):
TEST_FILE_PY = None
TEST_FILE_PY = None # type: str
def do_test(self, *args):
popen_kwargs = dict(


Loading…
Cancel
Save