コード例 #1
0
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
コード例 #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
コード例 #3
0
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
コード例 #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