Skip to content

Commit aee3dd3

Browse files
committed
lint
1 parent 6ea3fd5 commit aee3dd3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_ts_utility.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,7 @@ class TodoTD(TypedDict):
6161

6262
# KeyOf[T]
6363
# 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-
]
64+
type KeyOf[T] = Union[*[p.name for p in typing.Iter[typing.Members[T]]]]
6765

6866
# Exclude<T, U>
6967
# Constructs a type by excluding from T all union members assignable to U.

0 commit comments

Comments
 (0)