You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
then validation fails because yamale receives the PATH argument as e.g. /dev/fd/63 which fails the os.path.isfile test at command_line.py line 103, and is therefore treated as a directory.
Switching line 103 to be if not os.path.isdir(root): means it behaves correctly.
The text was updated successfully, but these errors were encountered:
If I use a shell process substitution like this:
or
then validation fails because yamale receives the
PATH
argument as e.g./dev/fd/63
which fails theos.path.isfile
test at command_line.py line 103, and is therefore treated as a directory.Switching line 103 to be
if not os.path.isdir(root):
means it behaves correctly.The text was updated successfully, but these errors were encountered: