diff --git a/econt/helper_functions.py b/econt/helper_functions.py index 9bc8663..7c9ebd9 100644 --- a/econt/helper_functions.py +++ b/econt/helper_functions.py @@ -40,7 +40,9 @@ def next_working_day(date): param = datetime.datetime.strptime(date, "%Y-%m-%d") # Monday - 0 # Tueday - 1 - # ... + # Wednesday - 2 + # Thursday - 3 + # Friday - 4 # Saturday - 5 if param.weekday() == 5: param += datetime.timedelta(days=2) diff --git a/setup.py b/setup.py index 568e0ff..9d9c919 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="econt", - version="1.0.2", + version="1.0.3", author="Dmitry Kalinin", packages=["econt"], url="https://github.com/lesthetique-store/econt",