CUQIpy 1.3.0.post0.dev104__py3-none-any.whl → 1.3.0.post0.dev237__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of CUQIpy might be problematic. Click here for more details.

cuqi/_version.py CHANGED
@@ -8,11 +8,11 @@ import json
8
8
 
9
9
  version_json = '''
10
10
  {
11
- "date": "2025-04-28T12:59:25+0200",
11
+ "date": "2025-05-15T09:06:20+0300",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "c62aed4105837bc321e7e325f1b1a2286c659b2f",
15
- "version": "1.3.0.post0.dev104"
14
+ "full-revisionid": "b9a5dd37abfe2ee51d5594630de54dd3469bfeca",
15
+ "version": "1.3.0.post0.dev237"
16
16
  }
17
17
  ''' # END VERSION_JSON
18
18
 
@@ -172,10 +172,10 @@ class _ProductGeometry(Geometry):
172
172
  return tuple(funvecs)
173
173
 
174
174
 
175
- def __repr__(self) -> str:
175
+ def __repr__(self, pad="") -> str:
176
176
  """Representation of the product geometry."""
177
177
  string = "{}(".format(self.__class__.__name__) + "\n"
178
178
  for g in self.geometries:
179
- string += "\t{}\n".format(g.__repr__())
180
- string += ")"
179
+ string += pad + " {}\n".format(g.__repr__())
180
+ string += pad + ")"
181
181
  return string