Преглед изворни кода

Add 'int'-style offset output format

nosoop пре 10 месеци
родитељ
комит
b79d2ba1dd
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      src/smgdc/validate.py

+ 3 - 1
src/smgdc/validate.py

@@ -99,7 +99,9 @@ class NumericOutputFormat(enum.StrEnum):
             return hex(value)
         elif self == NumericOutputFormat.HEX_SUFFIX:
             return f"{value:X}h"
-        raise NotImplementedError(f"Missing numeric output for {self.value}")
+        elif self == NumericOutputFormat.INT:
+            return f"{value}"
+        raise NotImplementedError(f"Missing numeric output for {self}")
 
 
 class BaseEntry(msgspec.Struct, kw_only=True):