Skip to content

Commit 4fc5a32

Browse files
authored
Merge pull request #39 from tekktrik/docfix/correct-example-wday-num
Update example to have Monday at index 0
2 parents 1e6b8b7 + 3fc85ea commit 4fc5a32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/ds3231_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
rtc = adafruit_ds3231.DS3231(i2c)
1515

1616
# Lookup table for names of days (nicer printing).
17-
days = ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
17+
days = ("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday")
1818

1919

2020
# pylint: disable-msg=using-constant-test

0 commit comments

Comments
 (0)