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
If click.Path(allow_dash=True, path_type=pathlib.Path) is used, it can return pathlib.Path("-"). Open file only checks filename == "-". If pathlib.Path("-") is passed, it will cause a file named "-" to be opened instead of a standard stream.
The text was updated successfully, but these errors were encountered:
If
click.Path(allow_dash=True, path_type=pathlib.Path)
is used, it can returnpathlib.Path("-")
. Open file only checksfilename == "-"
. Ifpathlib.Path("-")
is passed, it will cause a file named"-"
to be opened instead of a standard stream.The text was updated successfully, but these errors were encountered: