Skip to content

Commit 307f6d0

Browse files
authored
Merge pull request #5 from FoamyGuy/fix_day_names
fix day name index in example
2 parents 37e42fe + cc1756e commit 307f6d0

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)