diff --git a/rowers/dataprep.py b/rowers/dataprep.py index 5324bcd6..4094284d 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -353,7 +353,13 @@ def workout_summary_to_df( rankingpieces = [] boattypes = [] + counter1 = 0 + counter2 = len(ws) + for w in ws: + counter1 += 1 + if counter1 % 10 == 0: + print(counter1,'/',counter2) types.append(w.workouttype) names.append(w.name) ids.append(encoder.encode_hex(w.id))