Skip to content

Commit 9c0724e

Browse files
author
Ikko Eltociear Ashimine
authored
Admin: Fix typo in models.py (#6952)
1 parent 51672fb commit 9c0724e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

moto/kinesisvideoarchivedmedia/models.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ def _get_streaming_url(
2323
return f"{data_endpoint}{relative_path}?SessionToken={session_token}"
2424

2525
def get_hls_streaming_session_url(self, stream_name: str, stream_arn: str) -> str:
26-
# Ignore option paramters as the format of hls_url doesn't depend on them
26+
# Ignore option parameters as the format of hls_url doesn't depend on them
2727
api_name = "GET_HLS_STREAMING_SESSION_URL"
2828
return self._get_streaming_url(stream_name, stream_arn, api_name)
2929

3030
def get_dash_streaming_session_url(self, stream_name: str, stream_arn: str) -> str:
31-
# Ignore option paramters as the format of hls_url doesn't depend on them
31+
# Ignore option parameters as the format of hls_url doesn't depend on them
3232
api_name = "GET_DASH_STREAMING_SESSION_URL"
3333
return self._get_streaming_url(stream_name, stream_arn, api_name)
3434

0 commit comments

Comments
 (0)