vmray: improve comments models.py

This commit is contained in:
Mike Hunhoff
2024-07-30 11:43:53 -06:00
parent 71c515d4d7
commit a8d849e872
+2 -2
View File
@@ -74,7 +74,7 @@ def validate_hex_int(value: Union[str, int]) -> int:
HexInt = Annotated[int, BeforeValidator(validate_hex_int)]
# models flog.xml file
# models flog.xml file, certain fields left as comments for documentation purposes
class ParamDeref(BaseModel):
type_: str = Field(alias="type")
value: Optional[str] = None
@@ -150,7 +150,7 @@ class Flog(BaseModel):
analysis: Analysis
# models for summary_v2.json file
# models for summary_v2.json file, certain fields left as comments for documentation purposes
class GenericReference(BaseModel):
path: List[str]
source: str