Skip to content

Commit ee1fa19

Browse files
committed
black format
1 parent 55381dd commit ee1fa19

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

functional/pipeline.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
is_tabulatable,
2727
)
2828

29-
T = TypeVar('T')
29+
T = TypeVar("T")
3030

3131

3232
class Sequence(Generic[T]):
@@ -1821,7 +1821,7 @@ def extend(
18211821
func: Optional[Callable[[Any], Any]] = None,
18221822
aslist: bool = False,
18231823
final: bool = False,
1824-
name: str = '',
1824+
name: str = "",
18251825
parallel: bool = False,
18261826
):
18271827
"""

functional/util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
import dill as serializer # type: ignore
99

10-
T = TypeVar('T')
11-
U = TypeVar('U')
10+
T = TypeVar("T")
11+
U = TypeVar("U")
1212

1313
PROTOCOL = serializer.HIGHEST_PROTOCOL
1414
CPU_COUNT = cpu_count()

0 commit comments

Comments
 (0)