We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0c2de80 + dfd1dc6 commit ce086e6Copy full SHA for ce086e6
1 file changed
playerdatapy/custom_fields.py
@@ -2441,15 +2441,11 @@ def ball(cls) -> "BallFields":
2441
2442
@classmethod
2443
def url(
2444
- cls,
2445
- *,
2446
- format: Optional[DatafileFormat] = None,
2447
- session_times_only: Optional[bool] = None,
+ cls, *, format: Optional[DatafileFormat] = None
2448
) -> "BallDataRecordingGraphQLField":
2449
"""The URL to download the data file"""
2450
arguments: dict[str, dict[str, Any]] = {
2451
- "format": {"type": "DatafileFormat", "value": format},
2452
- "sessionTimesOnly": {"type": "Boolean", "value": session_times_only},
+ "format": {"type": "DatafileFormat", "value": format}
2453
}
2454
cleared_arguments = {
2455
key: value for key, value in arguments.items() if value["value"] is not None
0 commit comments