Skip to content

Commit

Permalink
[modin] Append to path to avoid namespace collision on development br…
Browse files Browse the repository at this point in the history
…anches (ray-project#3621)
  • Loading branch information
devin-petersohn authored and robertnishihara committed Dec 24, 2018
1 parent a1995ff commit c13b268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
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
Expand Down

0 comments on commit c13b268

Please sign in to comment.