fix(ci): typing

This commit is contained in:
Barrett Ruth 2025-10-05 23:08:54 -04:00
parent 4fac6c8019
commit b30c036478
2 changed files with 3 additions and 3 deletions

View file

@ -1,10 +1,10 @@
from abc import ABC, abstractmethod
from typing import Any, Awaitable, Callable, ParamSpec, cast
P = ParamSpec("P")
from .models import ContestListResult, MetadataResult, TestsResult
P = ParamSpec("P")
class BaseScraper(ABC):
@property