Skip to content

Commit 4cf37b2

Browse files
fix: add missing return annotation to optimizer::pushdown_predicates::pushdown_cnf
1 parent 6d74920 commit 4cf37b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlglot/optimizer/pushdown_predicates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def pushdown_cnf(
112112
sources: Sources,
113113
scope_ref_count: Mapping[int, int],
114114
join_index: Mapping[str, int] | None = None,
115-
):
115+
) -> None:
116116
"""
117117
If the predicates are in CNF like form, we can simply replace each block in the parent.
118118
"""

0 commit comments

Comments
 (0)