Skip to content
Snippets Groups Projects
Commit 234d6617 authored by Carlos Vega's avatar Carlos Vega
Browse files

changed default end business hour from 19.00 to 18.00

parent d50bee3c
No related branches found
No related tags found
1 merge request!171Feature/daily availability
...@@ -25,7 +25,7 @@ class OfficeAvailability(object): ...@@ -25,7 +25,7 @@ class OfficeAvailability(object):
office_end: when the office hours finish office_end: when the office hours finish
minimum_slot: frequency of the pandas series. T stands of minutes. Docs: https://pandas.pydata.org/pandas-docs/stable/generated/pandas.date_range.html minimum_slot: frequency of the pandas series. T stands of minutes. Docs: https://pandas.pydata.org/pandas-docs/stable/generated/pandas.date_range.html
''' '''
def __init__(self, name, start=None, end=None, office_start='8:00', office_end='19:00', minimum_slot='1T'): def __init__(self, name, start=None, end=None, office_start='8:00', office_end='18:00', minimum_slot='1T'):
today_midnight = get_today_midnight_date() today_midnight = get_today_midnight_date()
tomorrow_midnight = today_midnight + datetime.timedelta(days=1) tomorrow_midnight = today_midnight + datetime.timedelta(days=1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment