We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29537ad commit e84f6b7Copy full SHA for e84f6b7
happi/_Diagnostics/Probe.py
@@ -293,8 +293,8 @@ def _info(self, info=None):
293
while "p"+str(i) in info:
294
printedInfo += "p"+str(i)+" = "+" ".join(info["p"+str(i)].astype(str).tolist())+"\n"
295
i += 1
296
- if info["shape"].size>0:
297
- printedInfo += "number = "+" ".join(info["shape"].astype(str).tolist())+"\n"
+ if info["shape"].size>0:
+ printedInfo += "number = "+" ".join(info["shape"].astype(str).tolist())+"\n"
298
else:
299
printedInfo += "File not found or not readable"
300
return printedInfo
0 commit comments