Skip to content

Commit

Permalink
vmray: improve comments models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-hunhoff committed Jul 30, 2024
1 parent 71c515d commit a8d849e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions capa/features/extractors/vmray/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a8d849e

Please sign in to comment.