- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 44
Open
Labels
Milestone
Description
I did this:
from pathlib import Path
import frontmatter
markdown_file = Path("build") / "foo.md"
loaded = frontmatter.load(markdown_file)What I got
Argument of type "Path" cannot be assigned to parameter "fd" of type "str | IOBase" in function
The code works, you just have to fix the types.
darkdragon-001