Skip to content
Snippets Groups Projects

Setup CI

2 files
+ 38
1
Compare changes
  • Side-by-side
  • Inline

Files

+ 1
1
@@ -27,7 +27,7 @@ def int2hex(value):
@@ -27,7 +27,7 @@ def int2hex(value):
# Convert to uppercase by convention
# Convert to uppercase by convention
value = value.upper()
value = value.upper()
# Pad to 4 digits mininum
# Pad to 4 digits minimum
return value.zfill(4)
return value.zfill(4)
Loading