We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deaadb1 commit abc5be6Copy full SHA for abc5be6
1 file changed
pyperformance/_pyproject_toml.py
@@ -86,7 +86,9 @@ def load_pyproject_toml(filename, *, name=None, tools=None, requirefiles=True):
86
text = infile.read()
87
88
symlink = os.path.join(filename, text.strip())
89
- if os.path.exists(symlink):
+ print(filename, symlink)
90
+ if os.path.isfile(symlink):
91
+ print('following')
92
return load_pyproject_toml(
93
symlink, name=name, tools=tools, requireFiles=requireFiles
94
)
0 commit comments