Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
akihikokuroda committed Jul 25, 2024
1 parent a05bd72 commit d42cf8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/qiskit_serverless/core/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,9 @@ def stop(self, service: Optional[QiskitRuntimeService] = None):
"""Stops the job from running."""
return self._job_client.stop(self.job_id, service=service)

def logs(self, log_type: Optional[str] = None) -> str: # pylint: disable=unused-argument
def logs( # pylint: disable=unused-argument
self, log_type: Optional[str] = None
) -> str:
"""Returns logs of the job."""
return self._job_client.logs(self.job_id, type)

Expand Down

0 comments on commit d42cf8f

Please sign in to comment.