From c13b2685f5602a3e372a3c17a0f1132b2f54c1ba Mon Sep 17 00:00:00 2001 From: Devin Petersohn Date: Sun, 23 Dec 2018 23:58:56 -0800 Subject: [PATCH] [modin] Append to path to avoid namespace collision on development branches (#3621) --- python/ray/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/__init__.py b/python/ray/__init__.py index 8804bf9e2..5b47ccc75 100644 --- a/python/ray/__init__.py +++ b/python/ray/__init__.py @@ -47,7 +47,7 @@ except ImportError as e: raise modin_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "modin") -sys.path.insert(0, modin_path) +sys.path.append(modin_path) from ray.raylet import ObjectID, _config # noqa: E402 from ray.profiling import profile # noqa: E402