Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnzl-777 committed May 30, 2024
1 parent 4a38d8d commit 12ac7a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bloqade/submission/quera.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ def queue_api(self):

return self._queue_api

def get_capabilities(self) -> QuEraCapabilities:
def get_capabilities(self, use_experimental: bool = False) -> QuEraCapabilities:
try:
return QuEraCapabilities(**self.queue_api.get_capabilities())
except BaseException:
return super().get_capabilities()
return super().get_capabilities(use_experimental)

def submit_task(self, task_ir: QuEraTaskSpecification) -> str:
return self.queue_api.submit_task(
Expand Down

0 comments on commit 12ac7a4

Please sign in to comment.