From 9c3a5bf7e1c68b0e5b26bbf4a98e421e4b05a860 Mon Sep 17 00:00:00 2001 From: zjgemi Date: Tue, 24 Oct 2023 10:14:09 +0800 Subject: [PATCH] fix: rename _vendor -> vendor Signed-off-by: zjgemi --- src/dflow/python/op.py | 2 +- src/dflow/python/{_vendor => vendor}/typeguard/__init__.py | 0 src/dflow/python/{_vendor => vendor}/typeguard/importhook.py | 0 src/dflow/python/{_vendor => vendor}/typeguard/py.typed | 0 src/dflow/python/{_vendor => vendor}/typeguard/pytest_plugin.py | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename src/dflow/python/{_vendor => vendor}/typeguard/__init__.py (100%) rename src/dflow/python/{_vendor => vendor}/typeguard/importhook.py (100%) rename src/dflow/python/{_vendor => vendor}/typeguard/py.typed (100%) rename src/dflow/python/{_vendor => vendor}/typeguard/pytest_plugin.py (100%) diff --git a/src/dflow/python/op.py b/src/dflow/python/op.py index 870c238f..2e4a99a1 100644 --- a/src/dflow/python/op.py +++ b/src/dflow/python/op.py @@ -19,7 +19,7 @@ from ..io import (InputArtifact, InputParameter, OutputArtifact, OutputParameter, type_to_str) from ..utils import dict2list, get_key, randstr, s3_config -from ._vendor.typeguard import check_type +from .vendor.typeguard import check_type from .opio import OPIO, Artifact, BigParameter, OPIOSign, Parameter iwd = os.getcwd() diff --git a/src/dflow/python/_vendor/typeguard/__init__.py b/src/dflow/python/vendor/typeguard/__init__.py similarity index 100% rename from src/dflow/python/_vendor/typeguard/__init__.py rename to src/dflow/python/vendor/typeguard/__init__.py diff --git a/src/dflow/python/_vendor/typeguard/importhook.py b/src/dflow/python/vendor/typeguard/importhook.py similarity index 100% rename from src/dflow/python/_vendor/typeguard/importhook.py rename to src/dflow/python/vendor/typeguard/importhook.py diff --git a/src/dflow/python/_vendor/typeguard/py.typed b/src/dflow/python/vendor/typeguard/py.typed similarity index 100% rename from src/dflow/python/_vendor/typeguard/py.typed rename to src/dflow/python/vendor/typeguard/py.typed diff --git a/src/dflow/python/_vendor/typeguard/pytest_plugin.py b/src/dflow/python/vendor/typeguard/pytest_plugin.py similarity index 100% rename from src/dflow/python/_vendor/typeguard/pytest_plugin.py rename to src/dflow/python/vendor/typeguard/pytest_plugin.py