Skip to content

Commit

Permalink
i am such a goongleass
Browse files Browse the repository at this point in the history
  • Loading branch information
zeptofine committed Nov 9, 2023
1 parent a756337 commit eaa241d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imdataset_creator/datarules/base_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def combine_expr_conds(exprs: Iterable[Expr]) -> Expr:
"""
comp: Expr | None = None
for e in exprs:
comp = comp & e if comp is None else e
comp = comp & e if comp is not None else e
assert comp is not None

return comp

0 comments on commit eaa241d

Please sign in to comment.