Skip to content

Commit 0ce1528

Browse files
committed
Formatting
1 parent b6f34a3 commit 0ce1528

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

dsp/cone_transforms.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
except ImportError:
2222
from cvxpy.atoms.affine.upper_tri import upper_tri_to_full
2323

24+
2425
def return_zero() -> float:
2526
return 0.0
2627

dsp/saddle_atoms.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,9 @@ def _get_K_repr(self, local_to_glob: LocalToGlob, switched: bool = False) -> KRe
282282
epi_exp = cp.Variable(self.exponents.size, name="exp_epi")
283283
constraints = [
284284
epi_exp >= self.exponents, # handles composition in exponent
285-
ExpCone(cp.reshape(epi_exp + u, (f_local.size,), order="F"), np.ones(f_local.size), f_local),
285+
ExpCone(
286+
cp.reshape(epi_exp + u, (f_local.size,), order="F"), np.ones(f_local.size), f_local
287+
),
286288
t >= -u - 1,
287289
]
288290

0 commit comments

Comments
 (0)