We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e9a952 commit c7c2f05Copy full SHA for c7c2f05
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "pyswip"
7
-version = "0.3.2"
+version = "0.3.3"
8
description = "PySwip enables querying SWI-Prolog in your Python programs."
9
readme = "README.md"
10
requires-python = ">=3.9"
src/pyswip/prolog.py
@@ -392,7 +392,7 @@ def consult(
392
path = resolve_path(path, relative_to)
393
next(
394
cls.query(
395
- str(path.as_posix()).join(["consult('", "')"]), catcherrors=catcherrors
+ path.as_posix().join(["consult('", "')"]), catcherrors=catcherrors
396
)
397
398
0 commit comments