Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yomach committed Sep 23, 2024
1 parent 962b31b commit 9b7a874
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qualang_tools/callable_from_qua/_callable_from_qua.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 9b7a874

Please sign in to comment.