Skip to content

Commit

Permalink
Fix for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreDecan committed Feb 11, 2023
1 parent 4c7fbdc commit 65aad51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portion/api.py
Expand Up @@ -7,7 +7,7 @@
from .dict import IntervalDict


def partial(wrapped, /, *args, **kwargs):
def partial(wrapped, *args, **kwargs):
"""
Convenient helper that combines functools.update_wrapper and
functools.partial. It has exactly the same signature than functools.partial.
Expand Down

0 comments on commit 65aad51

Please sign in to comment.