fix type error when no start time is set
This commit is contained in:
parent
13e146e19c
commit
cb7cface2f
@ -297,7 +297,7 @@ def is_float(value):
|
||||
try:
|
||||
float(value)
|
||||
return True
|
||||
except ValueError:
|
||||
except (ValueError, TypeError):
|
||||
return False
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user