Skip to content

Commit

Permalink
Fix formatting error.
Browse files Browse the repository at this point in the history
  • Loading branch information
deanpoulos committed Oct 22, 2024
1 parent fc916d8 commit 8e8945d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions qualang_tools/callable_from_qua/_callable_from_qua.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,13 @@ def run(self, job: QmJob):

class ProgramAddon(ABC):
@abstractmethod
def enter_program(self, program: Program):
... # noqa: E704
def enter_program(self, program: Program): ... # noqa: E704

@abstractmethod
def exit_program(self, exc_type, exc_val, exc_tb):
... # noqa: E704
def exit_program(self, exc_type, exc_val, exc_tb): ... # noqa: E704

@abstractmethod
def execute_program(self, program: Program, quantum_machine: QuantumMachine):
... # noqa: E704
def execute_program(self, program: Program, quantum_machine: QuantumMachine): ... # noqa: E704


class QuaCallableEventManager(ProgramAddon):
Expand Down

0 comments on commit 8e8945d

Please sign in to comment.