Skip to content

Commit ae78467

Browse files
committed
Merge branch 'support_autodoc_type_aliases' of https://github.com/tikuma-lsuhsc/sphinx-autodoc-typehints into support_autodoc_type_aliases
2 parents a06a1fc + 0aab83d commit ae78467

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)