Closed danlamanna closed 1 year ago
This fixes the error seen in the wild:
'bytes' object has no attribute 'mkdir'
Where the click.Path type was being passed as a bytestring because of an older version of click which didn't support coercion to a Pathlib.Path.
click.Path
Pathlib.Path
This fixes the error seen in the wild:
Where the
click.Path
type was being passed as a bytestring because of an older version of click which didn't support coercion to aPathlib.Path
.