You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When validating the input date in sample project data in function "validate_project_data" it returns invalid because excel form provide also the time "00:00:00".
This must be removed before checking.
The following lines are the proposal for this change if field_type == "Date" and sample[field_name] != "": # if field contains also time, then removed it sample[field_name] = re.sub(r"\s\d{2}:\d{2}:\d{2}", "", sample[field_name]) try:
Command used and terminal output
No response
Relevant files
No response
System information
No response
The text was updated successfully, but these errors were encountered:
Description of the bug
When validating the input date in sample project data in function "validate_project_data" it returns invalid because excel form provide also the time "00:00:00".
This must be removed before checking.
The following lines are the proposal for this change
if field_type == "Date" and sample[field_name] != "": # if field contains also time, then removed it sample[field_name] = re.sub(r"\s\d{2}:\d{2}:\d{2}", "", sample[field_name]) try:
Command used and terminal output
No response
Relevant files
No response
System information
No response
The text was updated successfully, but these errors were encountered: