Skip to content

Commit

Permalink
correct import
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Martin <chris@cmartinit.co.uk>
  • Loading branch information
d80tb7 committed Sep 9, 2024
1 parent 126df20 commit 35afc17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/python/armada_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __init__(self, channel, event_timeout: timedelta = timedelta(minutes=15)):
self.submit_stub = submit_pb2_grpc.SubmitStub(channel)
self.event_stub = event_pb2_grpc.EventStub(channel)
self.job_stub = job_pb2_grpc.JobsStub(channel)
self.queue_stub = submit_pb2.QueueServiceStub(channel)
self.queue_stub = submit_pb2_grpc.QueueServiceStub(channel)
self.event_timeout = event_timeout

def get_job_events_stream(
Expand Down

0 comments on commit 35afc17

Please sign in to comment.