From 9b7a87464aea3a8bf71b5b87188d968371e06f69 Mon Sep 17 00:00:00 2001 From: Yoav Romach Date: Mon, 23 Sep 2024 19:59:30 +0300 Subject: [PATCH] fix lint --- qualang_tools/callable_from_qua/_callable_from_qua.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qualang_tools/callable_from_qua/_callable_from_qua.py b/qualang_tools/callable_from_qua/_callable_from_qua.py index 69b3e2d4..f524a91d 100644 --- a/qualang_tools/callable_from_qua/_callable_from_qua.py +++ b/qualang_tools/callable_from_qua/_callable_from_qua.py @@ -79,13 +79,13 @@ def run(self, job: QmJob): class ProgramAddon(ABC): @abstractmethod - def enter_program(self, program: Program): ... + def enter_program(self, program: Program): ... # noqa: E704 @abstractmethod - def exit_program(self, exc_type, exc_val, exc_tb): ... + def exit_program(self, exc_type, exc_val, exc_tb): ... # noqa: E704 @abstractmethod - def execute_program(self, program: Program, quantum_machine: QuantumMachine): ... + def execute_program(self, program: Program, quantum_machine: QuantumMachine): ... # noqa: E704 class QuaCallableEventManager(ProgramAddon):