Skip to content

Commit

Permalink
Admin: Fix typo in models.py (#6952)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear authored Oct 26, 2023
1 parent 51672fb commit 9c0724e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moto/kinesisvideoarchivedmedia/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ def _get_streaming_url(
return f"{data_endpoint}{relative_path}?SessionToken={session_token}"

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

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

Expand Down

0 comments on commit 9c0724e

Please sign in to comment.