Skip to content

Commit cc1756e

Browse files
committed
fix day name index in example
1 parent 37e42fe commit cc1756e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pcf8563_simpletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
rtc = adafruit_pcf8563.PCF8563(i2c_bus)
2222

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

2626

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

0 commit comments

Comments
 (0)