Skip to content

Commit 8721d5e

Browse files
committed
Fix typo
1 parent 3263476 commit 8721d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/stick_test_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@
619619
+ bytes(f"{utc_now.hour:02x}", pw_constants.UTF8) # noqa: UP031
620620
+ bytes(f"{utc_now.minute:02x}", pw_constants.UTF8) # noqa: UP031
621621
+ bytes(f"{(utc_now + timedelta(seconds=10)).second:02x}", pw_constants.UTF8) # noqa: UP031
622-
+ bytes(f"{utc_now.weekday():02d}", pw_constants.UTF8) # noqa: UP031
622+
+ bytes(f"{utc_now.weekday():02x}", pw_constants.UTF8) # noqa: UP031
623623
+ b"00" # unknown
624624
+ b"0000", # unknown2
625625
),

0 commit comments

Comments
 (0)