ensuring that len(df_times) always works. Preventing 'None' from occuring
This commit is contained in:
parent
210252df22
commit
287224eeb4
@ -29,7 +29,7 @@ class ValidationRules(ValidationRuleFunctions):
|
|||||||
returns: (evaluation_state, violations)
|
returns: (evaluation_state, violations)
|
||||||
"""
|
"""
|
||||||
# prepare df_times, which every validation rule tends to use
|
# prepare df_times, which every validation rule tends to use
|
||||||
df_times = self.sql_handler.df_dict.get('times') # -> pd.DataFrame
|
df_times = self.sql_handler.df_dict.get('times', pd.DataFrame()) # -> pd.DataFrame
|
||||||
|
|
||||||
if len(df_times)==0:
|
if len(df_times)==0:
|
||||||
return (StatusFlags.GREEN.value, [])
|
return (StatusFlags.GREEN.value, [])
|
||||||
|
|||||||
Reference in New Issue
Block a user