Files
pytorch-ts/pts/core/__init__.py
T
Vahe HakobyanandKashif Rasul 1b123ef152 Model serialization (#6)
* wip: serialization ran successfully

* wip: deserialization ran successfully
2020-03-12 11:32:46 +01:00

9 lines
226 B
Python

# Relative imports
from ._base import fqname_for
__all__ = ["fqname_for"]
# fix Sphinx issues, see https://bit.ly/2K2eptM
for item in __all__:
if hasattr(item, "__module__"):
setattr(item, "__module__", __name__)