Skip to content

Commit

Permalink
Correct code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
4c0n committed Sep 9, 2024
1 parent 126b96b commit 45d1d1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pydantic_jsonlogic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ class GreaterThanOrEqual(BaseModel):


class LessThan(BaseModel):
less_than: tuple[int | str | Var, int | str] | tuple[int, int, int] = Field(alias="<")
less_than: tuple[int | str | Var, int | str] | tuple[int, int, int] = Field(
alias="<"
)


class LessThanOrEqual(BaseModel):
Expand Down

0 comments on commit 45d1d1e

Please sign in to comment.