mirror of
https://github.com/wassname/pytorch-ts.git
synced 2026-07-15 11:25:33 +08:00
* wip: serialization ran successfully * wip: deserialization ran successfully
9 lines
226 B
Python
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__) |