style(formatting): rerun formatting

This commit is contained in:
Gergő Jedlicska 2023-02-15 19:21:48 +01:00
Родитель ea7baf8eb5
Коммит ae42bec1c3
Не найден ключ, соответствующий данной подписи
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -220,7 +220,7 @@ def _validate_type(t: Optional[type], value: Any) -> Tuple[bool, Any]:
if getattr(t, "__module__", None) == "typing":
if isinstance(t, ForwardRef):
return True, value
origin = getattr(t, "__origin__")
# below is what in nicer for >= py38
# origin = get_origin(t)

Просмотреть файл

@ -106,7 +106,7 @@ fake_bases = [FakeBase("foo"), FakeBase("bar")]
True,
fake_bases,
),
(List["int"], [2, 3, 4], True, [2, 3, 4])
(List["int"], [2, 3, 4], True, [2, 3, 4]),
],
)
def test_validate_type(