|
24 | 24 | typing.Tuple[
|
25 | 25 | Literal["type"], typing.Tuple[type, Literal["tuple"], Optional[int]]
|
26 | 26 | ],
|
27 |
| - typing.Tuple[ |
28 |
| - Literal["type"], typing.Tuple[type, Literal["mapping"], None] |
29 |
| - ], |
30 |
| - typing.Tuple[ |
31 |
| - Literal["type"], typing.Tuple[type, Literal["collection"], None] |
32 |
| - ], |
| 27 | + typing.Tuple[Literal["type"], typing.Tuple[type, Literal["mapping"], None]], |
| 28 | + typing.Tuple[Literal["type"], typing.Tuple[type, Literal["collection"], None]], |
33 | 29 | typing.Tuple[Literal["literal"], typing.Tuple[Any, ...]],
|
34 | 30 | typing.Tuple[Literal["collection"], None],
|
35 | 31 | typing.Tuple[Literal["mapping"], None],
|
@@ -92,9 +88,7 @@ class UnsupportedType(type):
|
92 | 88 | """
|
93 | 89 |
|
94 | 90 | def __class_getitem__(mcs, wrapped_type: Any) -> "UnsupportedType":
|
95 |
| - wrapper = type.__new__( |
96 |
| - mcs, f"{mcs.__name__}[{wrapped_type}]", tuple(), {} |
97 |
| - ) |
| 91 | + wrapper = type.__new__(mcs, f"{mcs.__name__}[{wrapped_type}]", tuple(), {}) |
98 | 92 | wrapper._wrapped_type = wrapped_type
|
99 | 93 | return wrapper
|
100 | 94 |
|
@@ -167,9 +161,7 @@ def type_annotation(self) -> str:
|
167 | 161 | 2. Unsupported types are not wrapped.
|
168 | 162 |
|
169 | 163 | """
|
170 |
| - return "".join( |
171 |
| - line.strip() for line in self._repr(mark_unsupported=False)[0] |
172 |
| - ) |
| 164 | + return "".join(line.strip() for line in self._repr(mark_unsupported=False)[0]) |
173 | 165 |
|
174 | 166 | def _recorded_type(self, idx: int) -> typing.Tuple[Any, int]:
|
175 | 167 | # pylint: disable = too-many-return-statements, too-many-branches
|
@@ -314,15 +306,11 @@ def _record_collection(self, item_t: Any) -> None:
|
314 | 306 | def _record_mapping(self, key_t: Any, value_t: Any) -> None:
|
315 | 307 | self._append_constructor_args(("mapping", None))
|
316 | 308 |
|
317 |
| - def _record_union( |
318 |
| - self, *member_ts: Any, use_UnionType: bool = False |
319 |
| - ) -> None: |
| 309 | + def _record_union(self, *member_ts: Any, use_UnionType: bool = False) -> None: |
320 | 310 | if use_UnionType:
|
321 | 311 | assert member_ts, "Cannot use UnionType with empty members."
|
322 | 312 | assert UnionType is not None, "Cannot use UnionType, version <= 3.9"
|
323 |
| - self._append_constructor_args( |
324 |
| - ("union", (len(member_ts), use_UnionType)) |
325 |
| - ) |
| 313 | + self._append_constructor_args(("union", (len(member_ts), use_UnionType))) |
326 | 314 |
|
327 | 315 | def _record_variadic_tuple(self, item_t: Any) -> None:
|
328 | 316 | self._append_constructor_args(("tuple", None))
|
@@ -353,10 +341,7 @@ def __repr__(self) -> str:
|
353 | 341 |
|
354 | 342 | :meta public:
|
355 | 343 | """
|
356 |
| - return ( |
357 |
| - "TypeInspector instance for the following type:\n" |
358 |
| - + self.type_structure |
359 |
| - ) |
| 344 | + return "TypeInspector instance for the following type:\n" + self.type_structure |
360 | 345 |
|
361 | 346 | def _repr(
|
362 | 347 | self, idx: int = 0, level: int = 0, *, mark_unsupported: bool = True
|
@@ -386,9 +371,7 @@ def _repr(
|
386 | 371 | return [indent + f"{repr(param)}"], idx
|
387 | 372 | if tag == "literal":
|
388 | 373 | assert isinstance(param, tuple)
|
389 |
| - return [ |
390 |
| - indent + f"Literal[{', '.join(repr(p) for p in param)}]" |
391 |
| - ], idx |
| 374 | + return [indent + f"Literal[{', '.join(repr(p) for p in param)}]"], idx |
392 | 375 | if tag == "typevar":
|
393 | 376 | assert isinstance(param, TypeVar)
|
394 | 377 | name = param.__name__
|
@@ -428,25 +411,18 @@ def _repr(
|
428 | 411 | for k in get_type_hints(t):
|
429 | 412 | value_lines, idx = self._repr(idx + 1, level + 1)
|
430 | 413 | opt_str = (
|
431 |
| - basic_indent |
432 |
| - if k in required_keys |
433 |
| - else basic_indent[:-1] + "?" |
| 414 | + basic_indent if k in required_keys else basic_indent[:-1] + "?" |
434 | 415 | )
|
435 | 416 | value_lines[0] = (
|
436 |
| - indent |
437 |
| - + opt_str |
438 |
| - + f"{k}: " |
439 |
| - + value_lines[0][next_indent_len:] |
| 417 | + indent + opt_str + f"{k}: " + value_lines[0][next_indent_len:] |
440 | 418 | )
|
441 | 419 | item_lines_list.extend(value_lines)
|
442 | 420 | lines = [indent + t.__name__ + " {", *item_lines_list, indent + "}"]
|
443 | 421 | return lines, idx
|
444 | 422 | pending_type = None
|
445 | 423 | if tag == "type":
|
446 | 424 | if not isinstance(param, tuple):
|
447 |
| - param_name = ( |
448 |
| - param.__name__ if isinstance(param, type) else str(param) |
449 |
| - ) |
| 425 | + param_name = param.__name__ if isinstance(param, type) else str(param) |
450 | 426 | return [indent + param_name], idx
|
451 | 427 | pending_type, tag, param = param
|
452 | 428 | if tag == "collection":
|
|
0 commit comments