Skip to content

Commit 65a3254

Browse files
punctuation
1 parent bb65ad8 commit 65a3254

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

docs/source/error_code_list.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ Check for an issue with imports [import]
670670

671671
Mypy generates an error if it can't resolve an `import` statement.
672672
This is a parent error code of `import-not-found`, `import-untyped`,
673-
and `import-untyped-stubs-available`
673+
and `import-untyped-stubs-available`.
674674

675675
See :ref:`ignore-missing-imports` for how to work around these errors.
676676

mypy/test/testcheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
)
2828
from mypy.test.update_data import update_testcase_output
2929

30-
lxml: Optional[ModuleType] #lxml is an optional dependency
30+
lxml: Optional[ModuleType] # lxml is an optional dependency
3131
try:
3232
import lxml
3333
except ImportError:

mypy/test/testcmdline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
normalize_error_messages,
2222
)
2323

24-
lxml: Optional[ModuleType] #lxml is an optional dependency
24+
lxml: Optional[ModuleType] # lxml is an optional dependency
2525
try:
2626
import lxml
2727
except ImportError:

mypy/test/testreports.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@
66
from types import ModuleType
77
from typing import Optional
88

9-
109
from mypy.report import CoberturaPackage, get_line_rate
1110
from mypy.test.helpers import Suite, assert_equal
1211

13-
lxml: Optional[ModuleType] #lxml is an optional dependency
12+
lxml: Optional[ModuleType] # lxml is an optional dependency
1413
try:
1514
import lxml
1615
except ImportError:

0 commit comments

Comments
 (0)