Skip to content

Commit

Permalink
Fix for black.
Browse files Browse the repository at this point in the history
  • Loading branch information
haz committed Aug 14, 2024
1 parent 93e185a commit cf62acc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pddl/logic/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,15 @@ def __call__(cls, *args, **kwargs):

return super(BinaryOpMetaclass, cls).__call__(*operands, **kwargs)


class And(BinaryOp, metaclass=BinaryOpMetaclass):
"""And operator."""

_absorbing = False
idempotency = True
SYMBOL = "and"


class Or(BinaryOp, metaclass=BinaryOpMetaclass):
"""Or operator."""

Expand Down

0 comments on commit cf62acc

Please sign in to comment.