We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ea3fd5 commit aee3dd3Copy full SHA for aee3dd3
tests/test_ts_utility.py
@@ -61,9 +61,7 @@ class TodoTD(TypedDict):
61
62
# KeyOf[T]
63
# Constructs a union of the names of every member of T.
64
-type KeyOf[T] = Union[
65
- *[p.name for p in typing.Iter[typing.Members[T]]]
66
-]
+type KeyOf[T] = Union[*[p.name for p in typing.Iter[typing.Members[T]]]]
67
68
# Exclude<T, U>
69
# Constructs a type by excluding from T all union members assignable to U.
0 commit comments