From c7f6323fba5acd7f5e0754632926eb8a7b7260ef Mon Sep 17 00:00:00 2001 From: AKP Date: Sat, 3 Dec 2022 13:41:43 +0000 Subject: [PATCH] Update `__init__.py` --- .../py/__init__.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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