Skip to content

Commit

Permalink
fix: apply black 23.3 to file core.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ssardina committed Mar 18, 2024
1 parent e788bbe commit ca3612e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pddl/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ def __init__(
self._domain, self._domain_name = self._parse_domain_and_domain_name(
domain, domain_name
)
self._requirements: Optional[AbstractSet[Requirements]] = (
self._parse_requirements(domain, requirements)
)
self._requirements: Optional[
AbstractSet[Requirements]
] = self._parse_requirements(domain, requirements)
self._objects: AbstractSet[Constant] = ensure_set(objects)
self._init: AbstractSet[Formula] = ensure_set(init)
self._goal: Formula = ensure(goal, And())
Expand Down

0 comments on commit ca3612e

Please sign in to comment.