Skip to content

Commit dbfd16d

Browse files
authored
Merge pull request #26 from FoamyGuy/fix_day_names
fix day name indexes
2 parents f522610 + 947b9da commit dbfd16d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pcf8523_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
rtc = adafruit_pcf8523.PCF8523(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)