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
The input file type seems to expected to be pathlib.Path on this line where a .name attribute is accessed. However, this file path type is annotated as str at the beginning of the merge function, here.
I believe the annotation should be changed to say a Path needs to be inputted, or the input path str could be converted to a Path during execution. Which would be preferred? Or other suggestions?
The text was updated successfully, but these errors were encountered:
The input file type seems to expected to be
pathlib.Path
on this line where a.name
attribute is accessed. However, this file path type is annotated asstr
at the beginning of the merge function, here.I believe the annotation should be changed to say a
Path
needs to be inputted, or the input pathstr
could be converted to aPath
during execution. Which would be preferred? Or other suggestions?The text was updated successfully, but these errors were encountered: