Skip to content

Commit

Permalink
unittests fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dantavori committed Feb 5, 2025
1 parent 281d799 commit c38141d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demisto_sdk/commands/content_graph/strict_objects/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
class ArgFilter(BaseStrictModel):
operator: str
ignore_case: Optional[bool] = Field(None, alias="ignorecase")
left: dict = Field(examples=[{"value": Any, "isContext": bool}])
right: Optional[dict] = Field(None, examples=[{"value": Any, "isContext": bool}])
left: dict = Field(examples=[{"value": {}, "isContext": False}])
right: Optional[dict] = Field(None, examples=[{"value": {}, "isContext": False}])
type_: Optional[str] = Field(None, alias="type")


Expand Down

0 comments on commit c38141d

Please sign in to comment.