Autogenerated type safety parameterisation of all methods

This commit is contained in:
Ian Renton
2026-09-20 20:02:19 +01:00
parent 6037e742cc
commit 324dd1414b
132 changed files with 1228 additions and 706 deletions
+8 -6
View File
@@ -1,7 +1,9 @@
from __future__ import annotations
import logging
import re
from datetime import datetime
from typing import ClassVar
from typing import Any, ClassVar
import pytz
import requests
@@ -33,11 +35,11 @@ class ParksNPeaks(HTTPSpotProvider):
ActivityName.SANPCPA,
]
def __init__(self, provider_config):
def __init__(self, provider_config: dict[str, Any]) -> None:
super().__init__("ParksNPeaks", provider_config, self.SPOTS_URL, self.POLL_INTERVAL_SEC)
def _http_response_to_spots(self, http_response):
new_spots = []
def _http_response_to_spots(self, http_response: requests.Response) -> list[Spot]:
new_spots: list[Spot] = []
# Iterate through source data
if http_response and http_response != "":
for source_spot in http_response.json():
@@ -117,10 +119,10 @@ class ParksNPeaks(HTTPSpotProvider):
new_spots.append(spot)
return new_spots
def can_submit_spot(self, activity):
def can_submit_spot(self, activity: str) -> bool:
return activity in self.SUBMITTABLE_ACTIVITIES
def submit_spot(self, spot, credentials):
def submit_spot(self, spot: Spot, credentials: dict[str, str]) -> None:
# TODO test this works
user_id = credentials.get("user_id", "")
api_key = credentials.get("api_key", "")