We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f572281 commit ae4e3e4Copy full SHA for ae4e3e4
tests/stick_test_data.py
@@ -619,7 +619,7 @@
619
+ bytes(f"{utc_now.hour:02x}", pw_constants.UTF8) # noqa: UP031
620
+ bytes(f"{utc_now.minute:02x}", pw_constants.UTF8) # noqa: UP031
621
+ 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
+ + bytes(f"{utc_now.weekday():02x}", pw_constants.UTF8) # noqa: UP031
623
+ b"00" # unknown
624
+ b"0000", # unknown2
625
),
0 commit comments