diff --git a/template/{{cookiecutter.__formattedDayNumber}}-{{cookiecutter.__camelTitle}}/py/__init__.py b/template/{{cookiecutter.__formattedDayNumber}}-{{cookiecutter.__camelTitle}}/py/__init__.py index cdab12e..9a18694 100644 --- a/template/{{cookiecutter.__formattedDayNumber}}-{{cookiecutter.__camelTitle}}/py/__init__.py +++ b/template/{{cookiecutter.__formattedDayNumber}}-{{cookiecutter.__camelTitle}}/py/__init__.py @@ -1,13 +1,12 @@ -from typing import Any +from typing import * from aocpy import BaseChallenge - class Challenge(BaseChallenge): @staticmethod - def one(instr: str) -> Any: + def one(instr: str) -> int: raise NotImplementedError @staticmethod - def two(instr: str) -> Any: + def two(instr: str) -> int: raise NotImplementedError