Skip to content

Commit

Permalink
fix: pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
PiergiorgioButtarini committed Feb 12, 2024
1 parent 0004e88 commit e24294a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibolab/instruments/qblox/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def _execute_pulse_sequence(
qubits: dict,
sequence: PulseSequence,
options: ExecutionParameters,
sweepers: list() = [], # list(Sweeper) = []
sweepers: list = [], # list(Sweeper) = []
**kwargs,
# nshots=None,
# navgs=None,
Expand Down
4 changes: 4 additions & 0 deletions src/qibolab/instruments/qblox/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ def count(cls):
self._ports[name] = port_cls(self, port_number=count(port_cls), port_name=name)
return self._ports[name]

@abstractmethod
def _set_default_values(self):
pass

@abstractmethod
def _setup_ports(self):
pass
Expand Down

0 comments on commit e24294a

Please sign in to comment.