Skip to content

Commit

Permalink
Fix check problem
Browse files Browse the repository at this point in the history
  • Loading branch information
lmatera19 committed Dec 11, 2024
1 parent 617edc2 commit 5046a0a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pyswip/prolog.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,11 @@ def consult(
:param relative_to: The path where the consulted file is relative to
"""
path = resolve_path(path, relative_to)
next(cls.query(str(path.as_posix()).join(["consult('", "')"]), catcherrors=catcherrors))
next(
cls.query(
str(path.as_posix()).join(["consult('", "')"]), catcherrors=catcherrors
)
)

@classmethod
def query(
Expand Down

0 comments on commit 5046a0a

Please sign in to comment.