Skip to content

Commit

Permalink
StreamManager: make function params explicit (#6355)
Browse files Browse the repository at this point in the history
  • Loading branch information
verult authored Nov 21, 2023
1 parent 26dbabc commit 3a64ef1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cirq-google/cirq_google/engine/stream_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@ def _generate_message_id(self) -> str:

def _get_retry_request_or_raise(
error: quantum.StreamError,
current_request,
create_program_and_job_request,
create_job_request,
current_request: quantum.QuantumRunStreamRequest,
create_program_and_job_request: quantum.QuantumRunStreamRequest,
create_job_request: quantum.QuantumRunStreamRequest,
get_result_request: quantum.QuantumRunStreamRequest,
):
"""Decide whether the given stream error is retryable.
Expand Down

0 comments on commit 3a64ef1

Please sign in to comment.