Skip to content

Commit b44e2a5

Browse files
committed
lint fixes
1 parent be723e4 commit b44e2a5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/qutip_qip/device/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
"LinearSpinChain",
2626
"CircularSpinChain",
2727
"SpinChainModel",
28-
"OptPulseProcessor"
28+
"OptPulseProcessor",
2929
]

src/qutip_qip/device/processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Processor(object):
7070

7171
def __init__(
7272
self,
73-
num_qubits,
73+
num_qubits=None,
7474
dims=None,
7575
spline_kind="step_func",
7676
model=None,

src/qutip_qip/qasm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import warnings
88

99
import numpy as np
10-
from math import pi # Don't remove
10+
from math import pi # Don't remove
1111

1212
from .circuit import QubitCircuit
1313
from .operations import (

0 commit comments

Comments
 (0)