File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -1123,16 +1123,17 @@ def areaanalysis(coords):
1123
1123
else pl .DataFrame (data )
1124
1124
)
1125
1125
if time .time () - start < 60 :
1126
- telapse = ( time .time () - start )
1127
- tstring = 's'
1126
+ telapse = time .time () - start
1127
+ tstring = "s"
1128
1128
elif time .time () - start > 60 :
1129
1129
telapse = (time .time () - start ) / 60
1130
- tstring = 'm'
1130
+ tstring = "m"
1131
1131
else :
1132
1132
telapse = (time .time () - start ) / np .square (60 )
1133
- tstring = 'h'
1133
+ tstring = "h"
1134
1134
print (
1135
- f"Computing { typestr } { analysis_string } File { i + 1 } /{ len (files )} Time elapsed: { telapse :.3f} " + tstring ,
1135
+ f"Computing { typestr } { analysis_string } File { i + 1 } /{ len (files )} Time elapsed: { telapse :.3f} "
1136
+ + tstring ,
1136
1137
end = "\r " ,
1137
1138
flush = True ,
1138
1139
)
You can’t perform that action at this time.
0 commit comments