generated from jCloud/repository-template
Bug fix in __init__.py
This commit is contained in:
@@ -31,5 +31,8 @@ A segment.
|
|||||||
For more details, see the function and method docstrings.
|
For more details, see the function and method docstrings.
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
### Version 0.1.1
|
||||||
|
- Bug fix: `__init__.py` tried to import from `_core` instead of `._core`.
|
||||||
|
|
||||||
### Version 0.1.0
|
### Version 0.1.0
|
||||||
- First release
|
- First release
|
||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "jeb-server-utils"
|
name = "jeb-server-utils"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "The utilities for the jeb server"
|
description = "The utilities for the jeb server"
|
||||||
dependencies = ["config-parser", "jeb-utils"]
|
dependencies = ["config-parser", "jeb-utils"]
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -16,8 +16,8 @@
|
|||||||
The utilities for the jeb server
|
The utilities for the jeb server
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from _core import *
|
from ._core import *
|
||||||
from _core import __all__ as _core__all__
|
from ._core import __all__ as _core__all__
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
*_core__all__
|
*_core__all__
|
||||||
|
|||||||
Reference in New Issue
Block a user