We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ce07d6 commit 381053cCopy full SHA for 381053c
src/diffpy/srmise/baselines/nanospherical.py
@@ -247,8 +247,6 @@ def getmodule(self):
247
for tup in zip(r, val, *outjac):
248
for t in tup:
249
if t is None:
250
- formatted_t = f"{None}"
251
- print(formatted_t.ljust(10))
+ print(f"{None}".ljust(10))
252
else:
253
- formatted_t = f"{t:.3g}".ljust(10)
254
- print(formatted_t)
+ print(f"{t:.3g}".ljust(10))
0 commit comments