Skip to content

Commit cdefb58

Browse files
committed
fix previous
1 parent 173dcf1 commit cdefb58

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

GSASII/imports/G2pwd_BrukerBRML.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ def XtractXMLScan():
119119
w = np.where(y>0,1/y,0.)
120120
for j in sorted(tcols): # show all columns with temperature
121121
if T[f'{j}c'] > 0:
122-
print(f'Column {j} T min {T[f'{j}min']:.2f}'
123-
f' max {T[f'{j}max']:.2f}'
124-
f' avg {T[f'{j}sum']/T[f'{j}c']:.2f} (C assumed)')
122+
print(f"Column {j} T min {T[f'{j}min']:.2f}"
123+
f" max {T[f'{j}max']:.2f}"
124+
f" avg {T[f'{j}sum']/T[f'{j}c']:.2f} (C assumed)")
125125
for j in tcols: # take 1st column with non-zero temperatures
126126
if T[f'{j}c'] > 0:
127127
self.Sample['Temperature'] = 273.15 + T[f'{j}sum']/T[f'{j}c']
128128
if len(tcols) > 1:
129-
print(f'Using column {j}, T={self.Sample['Temperature']:.3f} K')
129+
print(f"Using column {j}, T={self.Sample['Temperature']:.3f} K")
130130
break
131131
self.powderdata = [x,y,w,np.zeros(nSteps),np.zeros(nSteps),np.zeros(nSteps)]
132132
return True

0 commit comments

Comments
 (0)