Unverified Commit 96fcc1ca authored by Riyasat Ohib's avatar Riyasat Ohib Committed by GitHub
Browse files

[Fix] Restructure for wgit availability as a package (#1018)

parent 064e886b
...@@ -9,6 +9,6 @@ ...@@ -9,6 +9,6 @@
from typing import List from typing import List
from . import nn, optim from . import nn, optim, wgit
__all__: List[str] = [] __all__: List[str] = []
...@@ -3,7 +3,10 @@ ...@@ -3,7 +3,10 @@
# This source code is licensed under the BSD license found in the # This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree. # LICENSE file in the root directory of this source tree.
from typing import List
from .repo import Repo from .repo import Repo
from .version import __version_tuple__ from .version import __version_tuple__
__version__ = ".".join([str(x) for x in __version_tuple__]) __version__ = ".".join([str(x) for x in __version_tuple__])
__all__: List[str] = []
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment