Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setup_payload: Add support for parsing setup payloads in python impl #32516

Merged
merged 6 commits into from
May 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Restyled by isort
  • Loading branch information
restyled-commits authored and shubhamdp committed Mar 11, 2024
commit 4198a90f1f0595145a34d457fc587c337834a80c
2 changes: 1 addition & 1 deletion src/setup_payload/python/SetupPayload.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import click
from bitarray import bitarray
from bitarray.util import int2ba, zeros
from construct import BitStruct, BitsInteger, Enum
from construct import BitsInteger, BitStruct, Enum
from stdnum.verhoeff import calc_check_digit

# Format for constructing manualcode
Expand Down
Loading