We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a747a6 commit 42a2124Copy full SHA for 42a2124
datar/misc.py
@@ -1,14 +1,14 @@
1
-from typing import Any, Callable
+from typing import Any as _Any, Callable as _Callable
2
3
-from pipda import register_verb
+from pipda import register_verb as _register_verb
4
5
from .core.load_plugins import plugin as _plugin
6
7
locals().update(_plugin.hooks.misc_api())
8
9
10
-@register_verb(object)
11
-def pipe(data: Any, func: Callable, *args, **kwargs) -> Any:
+@_register_verb(object)
+def pipe(data: _Any, func: _Callable, *args, **kwargs) -> _Any:
12
"""Apply a function to the data
13
14
This function is similar to pandas.DataFrame.pipe() and allows you to
0 commit comments