소스 검색

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