Fix missing __init__ for wheels (#14615)

This commit is contained in:
Eric Liang 2021-03-10 18:13:58 -08:00 committed by GitHub
parent 153dcd3734
commit 081c960b59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
from .dynamic_resources import set_resource
from .packaging.load_package import load_package
from ray.experimental.dynamic_resources import set_resource
from ray.experimental.packaging.load_package import load_package
__all__ = ["set_resource", "load_package"]