We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bec696 commit 6bbad22Copy full SHA for 6bbad22
1 file changed
misc/codegen/loaders/dbschemeloader.py
@@ -33,7 +33,7 @@ def _get_table(match):
33
name=match["table"],
34
columns=[_get_column(f) for f in _Re.field.finditer(match["tablebody"])],
35
keyset=keyset,
36
- dir=pathlib.PosixPath(match["tabledir"]) if match["tabledir"] else None,
+ dir=pathlib.PurePosixPath(match["tabledir"]) if match["tabledir"] else None,
37
)
38
39
0 commit comments