You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
169B

  1. from pathlib import PurePath
  2. from os import PathLike
  3. from typing import Union
  4. #: A path, string, or convertible-to-Path object
  5. Pathish = Union[PathLike, PurePath, str]