updating the sql handler's method of filtering for the filled-in header

This commit is contained in:
scopesorting 2023-11-29 15:21:20 +01:00
parent ce32ccab15
commit 8bcb910d0e

View File

@ -261,6 +261,9 @@ class SQLHandler():
filtered_series = self.filter_df_by_participant_type(df_times, participant_type)
#filtered_series = df_times.loc[df_times["participant_type"]==participant_type]
if len(filtered_series)==0:
return None
if len(filtered_series)==0:
return None