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
_("{name} {filename!r} does not exist.").format(
_("{name} {filename!r} is a file.").format(
_("{name} '{filename}' is a directory.").format(
_("{name} {filename!r} is not readable.").format(
_("{name} {filename!r} is not writable.").format(
_("{name} {filename!r} is not executable.").format(
The text was updated successfully, but these errors were encountered:
User Actions
Expected Output
Actual Output
Code
Cause
You clearly forgot
!r
on this line and are using quotes instead.Just compare these lines in click.types:
The text was updated successfully, but these errors were encountered: