Преглед на файлове

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):