Skip to content

Commit 0aab83d

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

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/test_integration_autodoc_type_aliases.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
from pathlib import Path
66
from textwrap import dedent, indent
7-
from typing import TYPE_CHECKING, Any, Callable, NewType, TypeVar, Literal # no type comments
7+
from typing import TYPE_CHECKING, Any, Callable, Literal, NewType, TypeVar # no type comments
88

99
import pytest
1010

@@ -33,7 +33,9 @@ def dec(val: T) -> T:
3333

3434
return dec
3535

36-
ArrayLike = Literal['test']
36+
37+
ArrayLike = Literal["test"]
38+
3739

3840
@expected(
3941
"""\

0 commit comments

Comments
 (0)