We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55381dd commit ee1fa19Copy full SHA for ee1fa19
functional/pipeline.py
@@ -26,7 +26,7 @@
26
is_tabulatable,
27
)
28
29
-T = TypeVar('T')
+T = TypeVar("T")
30
31
32
class Sequence(Generic[T]):
@@ -1821,7 +1821,7 @@ def extend(
1821
func: Optional[Callable[[Any], Any]] = None,
1822
aslist: bool = False,
1823
final: bool = False,
1824
- name: str = '',
+ name: str = "",
1825
parallel: bool = False,
1826
):
1827
"""
functional/util.py
@@ -7,8 +7,8 @@
7
8
import dill as serializer # type: ignore
9
10
11
-U = TypeVar('U')
+U = TypeVar("U")
12
13
PROTOCOL = serializer.HIGHEST_PROTOCOL
14
CPU_COUNT = cpu_count()
0 commit comments