Skip to content

Commit

Permalink
Chore: fix return type of and_, or_ methods
Browse files Browse the repository at this point in the history
  • Loading branch information
georgesittas committed May 26, 2023
1 parent ec7c863 commit 810522b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqlglot/expressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ def and_(
dialect: DialectType = None,
copy: bool = True,
**opts,
) -> Expression:
) -> Condition:
"""
AND this condition with one or multiple expressions.
Expand All @@ -696,7 +696,7 @@ def or_(
dialect: DialectType = None,
copy: bool = True,
**opts,
) -> Expression:
) -> Condition:
"""
OR this condition with one or multiple expressions.
Expand Down

0 comments on commit 810522b

Please sign in to comment.