def get_next_tourney_start():
    next_first_of_next_month = util.get_first_of_following_month(
        util.get_first_of_next_month())
    result = next_first_of_next_month + __A_WEEK_PRIOR
    return result
Beispiel #2
0
def get_next_tourney_start(utc_now: datetime = None):
    next_first_of_next_month = util.get_first_of_following_month(
        util.get_first_of_next_month(utc_now))
    result = next_first_of_next_month + __A_WEEK_PRIOR
    return result
def get_current_tourney_start():
    first_of_next_month = util.get_first_of_next_month()
    result = first_of_next_month + __A_WEEK_PRIOR
    return result
Beispiel #4
0
def get_current_tourney_start(utc_now: datetime = None):
    first_of_next_month = util.get_first_of_next_month(utc_now)
    result = first_of_next_month + __A_WEEK_PRIOR
    return result