Skip to content

Commit

Permalink
Merge pull request #76 from elliot-100/fix
Browse files Browse the repository at this point in the history
Fix: type checking on Python < 3.10
  • Loading branch information
elliot-100 authored Dec 19, 2023
2 parents aac1f6e + 63ff681 commit 46ecb2f
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 46ecb2f

Please sign in to comment.