16 lines
315 B
Python
16 lines
315 B
Python
import constants
|
|
from type import Setting, Time
|
|
|
|
global day_mode
|
|
global by_day_settings
|
|
global by_week_settings
|
|
|
|
|
|
def init():
|
|
global day_mode
|
|
global by_day_settings
|
|
global by_week_settings
|
|
|
|
by_day_settings = []
|
|
by_week_settings = [Setting(Time(10,10), 20.5)]
|
|
day_mode = constants.BY_WEEK |