aboutsummaryrefslogtreecommitdiff
path: root/codegen/lib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/lib/utils.py')
-rwxr-xr-xcodegen/lib/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/codegen/lib/utils.py b/codegen/lib/utils.py
index efabbb38..162dd0fa 100755
--- a/codegen/lib/utils.py
+++ b/codegen/lib/utils.py
@@ -25,7 +25,7 @@ def upper_first_letter(name: str):
def padded_hex(n: int):
- return f'0x{n:02x}'
+ return f'0x{n:02X}'
class PacketIdentifier: