Skip to content

Commit ce086e6

Browse files
Merge pull request #19 from PlayerData/regenerate-ariadne-codegen-again
chore: remove old session_times_only parameter
2 parents 0c2de80 + dfd1dc6 commit ce086e6

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

playerdatapy/custom_fields.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2441,15 +2441,11 @@ def ball(cls) -> "BallFields":
24412441

24422442
@classmethod
24432443
def url(
2444-
cls,
2445-
*,
2446-
format: Optional[DatafileFormat] = None,
2447-
session_times_only: Optional[bool] = None,
2444+
cls, *, format: Optional[DatafileFormat] = None
24482445
) -> "BallDataRecordingGraphQLField":
24492446
"""The URL to download the data file"""
24502447
arguments: dict[str, dict[str, Any]] = {
2451-
"format": {"type": "DatafileFormat", "value": format},
2452-
"sessionTimesOnly": {"type": "Boolean", "value": session_times_only},
2448+
"format": {"type": "DatafileFormat", "value": format}
24532449
}
24542450
cleared_arguments = {
24552451
key: value for key, value in arguments.items() if value["value"] is not None

0 commit comments

Comments
 (0)