sapling/eden/testlib/types.py
Durham Goode 98472dbb33 testlib: add basic working copy manipulation functions
Summary: Adds basic helpers for adding and removing files from the working copy.

Differential Revision: D35683768

fbshipit-source-id: 3fd4746222f53729eefd19a5d9833ae7ee4773d4
2022-04-21 19:06:14 -07:00

15 lines
329 B
Python

# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2.
# pyre-strict
from __future__ import annotations
from pathlib import Path
from typing import Union
from .file import File
PathLike = Union[File, Path, str]