diff --git a/src/rybak/__init__.py b/src/rybak/__init__.py index ac27206..bda3be8 100644 --- a/src/rybak/__init__.py +++ b/src/rybak/__init__.py @@ -3,7 +3,7 @@ 'render', ] -from pathlib import Path +from pathlib import Path, PosixPath from typing import Any, Iterable, Mapping, Optional, Type, Union from ._types import TemplateData @@ -46,6 +46,6 @@ def render( excluded=excluded, remove_suffixes=remove_suffixes, ), - Path(), - Path(), + PosixPath(), + PosixPath(), ).render(data)