Skip to content

Commit

Permalink
Minor.
Browse files Browse the repository at this point in the history
  • Loading branch information
hhoppe committed May 6, 2024
1 parent b01ca97 commit 7145f67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ documentation = "https://hhoppe.github.io/resampler/resampler.html"
# Other: changelog

[project.optional-dependencies]
# Development deps (unittest, linting, formating,...)
# Development deps (unittest, linting, formatting,...)
# Installed through `pip install .[dev]`
dev = [
# "pytest",
Expand Down
2 changes: 1 addition & 1 deletion resampler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@


def _noop_decorator(*args: Any, **kwargs: Any) -> Any:
"""Return function decorated with no-operation; invokable with or without args."""
"""Return function decorated with no-operation; invocable with or without args."""
if len(args) != 1 or not callable(args[0]) or kwargs:
return _noop_decorator # Decorator is invoked with arguments; ignore them.
func: Callable[..., Any] = args[0]
Expand Down

0 comments on commit 7145f67

Please sign in to comment.