1
0
Fork 0

Use the path variable, not the type

This commit is contained in:
Luca Beltrame 2015-05-24 23:46:09 +02:00
parent a26107f8ad
commit fd2c477173

View file

@ -17,7 +17,7 @@ import yaml
def is_jekyll_root(path: Path):
return (Path / "_config.yml").exists()
return (path / "_config.yml").exists()
def hash_file(filename: Path) -> str: