Skip to content

Commit

Permalink
updated kaa/__init__.py comments
Browse files Browse the repository at this point in the history
  • Loading branch information
maniek2332 committed Feb 23, 2020
1 parent aec9228 commit 1bfdbf7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion kaa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# Various package-level initializations goes here.
# Any non-essential variables should be del-ed,
# so we don't clutter kaa.* namespace.


# Version data from `versioneer` script.
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions


# We initialize logging outside _kaa module,
# since the module itself is used in logging configuration
# dict, causing import issues.
from .log import _initialize_kaa_logging_config

_initialize_kaa_logging_config()
del _initialize_kaa_logging_config
2 changes: 1 addition & 1 deletion kaacore

0 comments on commit 1bfdbf7

Please sign in to comment.