Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdelorenzo committed Jul 7, 2021
1 parent d12fa9c commit 61b7f28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from __future__ import annotations
from typing import Union
from pathlib import Path, PurePath
from os import PathLike

Expand All @@ -13,7 +14,7 @@
WILDCARD_GLOB: str = '*'


PathTypes = PathLike | str
PathTypes = Union[PathLike, str]
Paths = tuple[Path, AsyncPath]


Expand Down

0 comments on commit 61b7f28

Please sign in to comment.