Skip to content

Commit bf26d87

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0f22268 commit bf26d87

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mypy/test/teststubgen.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -845,10 +845,9 @@ class TestClassVariableCls:
845845
assert_equal(gen.get_imports().splitlines(), ["from typing import ClassVar"])
846846
assert_equal(output, ["class C:", " x: ClassVar[int] = ..."])
847847

848-
849848
def test_non_c_generate_signature_with_kw_only_args(self) -> None:
850849
class TestClass:
851-
def test(self, arg0, *, keyword_only : str, keyword_only_with_default : int = 7):
850+
def test(self, arg0, *, keyword_only: str, keyword_only_with_default: int = 7):
852851
pass
853852

854853
output: list[str] = []

0 commit comments

Comments
 (0)