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

chore: add type hints to registry decorator #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/adventofcode/registry/decorators.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
from collections.abc import Callable
from functools import partial, wraps
from typing import ParamSpec, TypeAlias, TypeVar

from adventofcode.registry import registry
from adventofcode.registry.util import get_registry_key
from adventofcode.util.helpers import solution_timer

R = TypeVar("R")
P = ParamSpec("P")
SolutionFunc: TypeAlias = Callable[P, R]

def register_solution(year: int, day: int, part: int, version: str = "normal"):

def register_solution(
year: int, day: int, part: int, version: str = "normal"
) -> Callable[[SolutionFunc], SolutionFunc]:
"""Register a solution to the solution registry"""

def decorator(func):
def decorator(func: SolutionFunc) -> SolutionFunc:
partial_func = partial( # type: ignore
solution_timer, func=func, year=year, day=day, part=part, version=version
)
Expand Down
Loading