Skip to content

Commit 2723eb3

Browse files
committed
Minor refactoring and code formatting
1 parent 5255c3b commit 2723eb3

File tree

4 files changed

+126
-172
lines changed

4 files changed

+126
-172
lines changed

=

-282 Bytes
Binary file not shown.

typing_validation/inspector.py

+11-35
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,8 @@
2424
typing.Tuple[
2525
Literal["type"], typing.Tuple[type, Literal["tuple"], Optional[int]]
2626
],
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]],
3329
typing.Tuple[Literal["literal"], typing.Tuple[Any, ...]],
3430
typing.Tuple[Literal["collection"], None],
3531
typing.Tuple[Literal["mapping"], None],
@@ -92,9 +88,7 @@ class UnsupportedType(type):
9288
"""
9389

9490
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(), {})
9892
wrapper._wrapped_type = wrapped_type
9993
return wrapper
10094

@@ -167,9 +161,7 @@ def type_annotation(self) -> str:
167161
2. Unsupported types are not wrapped.
168162
169163
"""
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])
173165

174166
def _recorded_type(self, idx: int) -> typing.Tuple[Any, int]:
175167
# pylint: disable = too-many-return-statements, too-many-branches
@@ -314,15 +306,11 @@ def _record_collection(self, item_t: Any) -> None:
314306
def _record_mapping(self, key_t: Any, value_t: Any) -> None:
315307
self._append_constructor_args(("mapping", None))
316308

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:
320310
if use_UnionType:
321311
assert member_ts, "Cannot use UnionType with empty members."
322312
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)))
326314

327315
def _record_variadic_tuple(self, item_t: Any) -> None:
328316
self._append_constructor_args(("tuple", None))
@@ -353,10 +341,7 @@ def __repr__(self) -> str:
353341
354342
:meta public:
355343
"""
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
360345

361346
def _repr(
362347
self, idx: int = 0, level: int = 0, *, mark_unsupported: bool = True
@@ -386,9 +371,7 @@ def _repr(
386371
return [indent + f"{repr(param)}"], idx
387372
if tag == "literal":
388373
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
392375
if tag == "typevar":
393376
assert isinstance(param, TypeVar)
394377
name = param.__name__
@@ -428,25 +411,18 @@ def _repr(
428411
for k in get_type_hints(t):
429412
value_lines, idx = self._repr(idx + 1, level + 1)
430413
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] + "?"
434415
)
435416
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:]
440418
)
441419
item_lines_list.extend(value_lines)
442420
lines = [indent + t.__name__ + " {", *item_lines_list, indent + "}"]
443421
return lines, idx
444422
pending_type = None
445423
if tag == "type":
446424
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)
450426
return [indent + param_name], idx
451427
pending_type, tag, param = param
452428
if tag == "collection":

0 commit comments

Comments
 (0)