We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04aa0d3 commit 43de6cdCopy full SHA for 43de6cd
1 file changed
src/AnalysisFunctions.py
@@ -1123,16 +1123,17 @@ def areaanalysis(coords):
1123
else pl.DataFrame(data)
1124
)
1125
if time.time() - start < 60:
1126
- telapse = (time.time() - start)
1127
- tstring = 's'
+ telapse = time.time() - start
+ tstring = "s"
1128
elif time.time() - start > 60:
1129
telapse = (time.time() - start) / 60
1130
- tstring = 'm'
+ tstring = "m"
1131
else:
1132
telapse = (time.time() - start) / np.square(60)
1133
- tstring = 'h'
+ tstring = "h"
1134
print(
1135
- f"Computing {typestr} {analysis_string} File {i + 1}/{len(files)} Time elapsed: {telapse:.3f} "+tstring,
+ f"Computing {typestr} {analysis_string} File {i + 1}/{len(files)} Time elapsed: {telapse:.3f} "
1136
+ + tstring,
1137
end="\r",
1138
flush=True,
1139
0 commit comments