Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tda] Critical Experiences - switch to 24 hour cycle #668

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions tda/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,12 @@ def time_segment():
# return 3 + now.minute // 30

# change every hour, except for segment #4 that's 2 hours long (cycle = 6 hours)
mod5 = now.hour % 6
return 4 if mod5 == 5 else mod5
#mod5 = now.hour % 6
#return 4 if mod5 == 5 else mod5

# change every 4 hours, except for segment #4 that's 8 hours long (cycle = 24 hours)
d4 = now.hour // 4
return 4 if d4 == 5 else d4

# array length must match number of possible time segments
probabilities = { # segments 0 1 2 3 4
Expand Down
Loading