Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rmshaffer committed May 13, 2024
1 parent f6cc106 commit 268e051
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions test/unit_tests/braket/aws/test_aws_quantum_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,7 @@ class DummySerializableProgram(SerializableProgram):
def __init__(self, source: str):
self.source = source

def to_ir(
self, ir_type: IRType = IRType.OPENQASM, allow_implicit_build: bool = False
) -> str:
def to_ir(self, ir_type: IRType = IRType.OPENQASM, allow_implicit_build: bool = False) -> str:
return self.source


Expand Down
4 changes: 1 addition & 3 deletions test/unit_tests/braket/devices/test_local_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,7 @@ class DummySerializableProgram(SerializableProgram):
def __init__(self, source: str):
self.source = source

def to_ir(
self, ir_type: IRType = IRType.OPENQASM, allow_implicit_build: bool = False
) -> str:
def to_ir(self, ir_type: IRType = IRType.OPENQASM, allow_implicit_build: bool = False) -> str:
return self.source


Expand Down

0 comments on commit 268e051

Please sign in to comment.