Skip to content

Commit

Permalink
chore: address PR comment
Browse files Browse the repository at this point in the history
Signed-off-by: behnazh-w <[email protected]>
  • Loading branch information
behnazh-w committed Nov 21, 2024
1 parent b76afe2 commit a61bb94
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ class MaliciousMetadataFacts(CheckFacts):
detail_information: Mapped[dict[str, JsonType]] = mapped_column(DBJsonDict, nullable=False)

#: The result of analysis, which can be an empty dictionary.
result: Mapped[dict] = mapped_column(DBJsonDict, nullable=False, info={"justification": JustificationType.TEXT})
result: Mapped[dict[Heuristics, HeuristicResult]] = mapped_column(
DBJsonDict, nullable=False, info={"justification": JustificationType.TEXT}
)

__mapper_args__ = {
"polymorphic_identity": "_detect_malicious_metadata_check",
Expand Down

0 comments on commit a61bb94

Please sign in to comment.