Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleades committed Feb 11, 2024
1 parent e5e0ef6 commit 2877d73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion copier/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def inner(*args: P.args, **kwargs: P.kwargs) -> int:

# See https://github.com/copier-org/copier/pull/1513
if sys.version_info >= (3, 10):
inner.__signature__ = inspect.signature(method, eval_str=True) if sys.version_info >= (3, 10) # type: ignore[attr-defined]
inner.__signature__ = inspect.signature(method, eval_str=True) # type: ignore[attr-defined]
else:
inner.__signature__ = inspect.signature(method) # type: ignore[attr-defined]

Check warning on line 88 in copier/cli.py

View check run for this annotation

Codecov / codecov/patch

copier/cli.py#L88

Added line #L88 was not covered by tests

Expand Down

0 comments on commit 2877d73

Please sign in to comment.