Skip to content

Commit 43de6cd

Browse files
committed
linted
1 parent 04aa0d3 commit 43de6cd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/AnalysisFunctions.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,16 +1123,17 @@ def areaanalysis(coords):
11231123
else pl.DataFrame(data)
11241124
)
11251125
if time.time() - start < 60:
1126-
telapse = (time.time() - start)
1127-
tstring = 's'
1126+
telapse = time.time() - start
1127+
tstring = "s"
11281128
elif time.time() - start > 60:
11291129
telapse = (time.time() - start) / 60
1130-
tstring = 'm'
1130+
tstring = "m"
11311131
else:
11321132
telapse = (time.time() - start) / np.square(60)
1133-
tstring = 'h'
1133+
tstring = "h"
11341134
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,
11361137
end="\r",
11371138
flush=True,
11381139
)

0 commit comments

Comments
 (0)