Skip to content

Commit

Permalink
Fix: type checking on Python < 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
elliot-100 committed Dec 19, 2023
1 parent aac1f6e commit 63ff681
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion britishcycling_clubs/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
import logging
import time
from pprint import pformat
from typing import TypedDict, TypeGuard
from typing import TYPE_CHECKING, TypedDict

from playwright.sync_api import sync_playwright

if TYPE_CHECKING:
from typing_extensions import TypeGuard

MANAGER_BASE_URL = "https://www.britishcycling.org.uk/uac/connect?success_url=/dashboard/club/membership?club_id="

log = logging.getLogger(__name__)
Expand Down

0 comments on commit 63ff681

Please sign in to comment.