X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Fdunshire%2Fcones.py;h=92a03a96245e79db4bce92f013e782c1964bf458;hb=bd5a4b0c8519de2a938663acdbc080560f829628;hp=870a882423e6180ea0e4256e5f7c05f17aac6d4f;hpb=6aff913423ca1f1ec2434650a6065d18a2f6415f;p=dunshire.git diff --git a/src/dunshire/cones.py b/src/dunshire/cones.py index 870a882..92a03a9 100644 --- a/src/dunshire/cones.py +++ b/src/dunshire/cones.py @@ -539,7 +539,7 @@ class CartesianProduct(SymmetricCone): TypeError: the given point has the wrong dimensions """ - return all([p in f for (p,f) in zip(point, self.factors())]) + return all([p in f for (p, f) in zip(point, self.factors())])