diff --git a/test/unit_tests/braket/aws/test_aws_quantum_task.py b/test/unit_tests/braket/aws/test_aws_quantum_task.py index a63be2a96..127b43d61 100644 --- a/test/unit_tests/braket/aws/test_aws_quantum_task.py +++ b/test/unit_tests/braket/aws/test_aws_quantum_task.py @@ -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 diff --git a/test/unit_tests/braket/devices/test_local_simulator.py b/test/unit_tests/braket/devices/test_local_simulator.py index 149f5555d..4adb11b7e 100644 --- a/test/unit_tests/braket/devices/test_local_simulator.py +++ b/test/unit_tests/braket/devices/test_local_simulator.py @@ -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