Allow specifying drivers as "inactive" and replace Logan Sargeant with Franco Colapinto
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 1m27s

This commit is contained in:
2024-08-30 20:47:06 +02:00
parent 3340b77efe
commit b4c459ffe7
19 changed files with 160 additions and 95 deletions

View File

@ -1,7 +1,7 @@
from typing import Any, Callable, Dict
class ApiDriver():
class ApiDriver:
__type_conversion_map__: Dict[str, Callable[[Any], Any]] = {
"session_key": int,
"meeting_key": int,

View File

@ -2,7 +2,7 @@ from datetime import datetime
from typing import Any, Callable, Dict
class ApiPosition():
class ApiPosition:
__type_conversion_map__: Dict[str, Callable[[Any], Any]] = {
"session_key": int,
"meeting_key": int,

View File

@ -2,7 +2,7 @@ from datetime import datetime, time
from typing import Any, Callable, Dict
class ApiSession():
class ApiSession:
__type_conversion_map__: Dict[str, Callable[[Any], Any]] = {
"location": str,
"country_key": int,