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
Argument of type "Path" cannot be assigned to parameter "filename" of type "str | None" in function "edit"
Type "Path" is not assignable to type "str | None"
"Path" is not assignable to "str"
"Path" is not assignable to "None"Pylance[reportArgumentType](https://github.com/microsoft/pyright/blob/main/docs/configuration.md#reportArgumentType)
Easy workaround with:
click.edit(filename=str(export_common.path))
but would be nice if didn't need str.
The text was updated successfully, but these errors were encountered:
Would you welcome a PR to avoid this?
Easy workaround with:
but would be nice if didn't need
str
.The text was updated successfully, but these errors were encountered: