Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Refactor using curry_flip from Expression library #682

Draft
wants to merge 14 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Code fixes (isort)
dbrattli committed Dec 31, 2022
commit 901a6fb723bf48be9450e0b8e822e947e549816d
2 changes: 1 addition & 1 deletion reactivex/curry.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Any, Callable, Tuple, TypeVar, overload

from typing_extensions import Concatenate, ParamSpec, Literal
from typing_extensions import Concatenate, Literal, ParamSpec

_P = ParamSpec("_P")
_A = TypeVar("_A")