zionrubin commented on a change in pull request #28:
URL: https://github.com/apache/incubator-liminal/pull/28#discussion_r588100464
##########
File path: liminal/core/util/class_util.py
##########
@@ -61,10 +60,11 @@ def import_module(package, recursive=True):
package = importlib.import_module(package)
results = {}
for loader, name, is_pkg in pkgutil.walk_packages(package.__path__):
- full_name = package.__name__ + '.' + name
- results[full_name] = importlib.import_module(full_name)
- if recursive and is_pkg:
- results.update(import_module(full_name))
+ if not name == 'liminal_python_server':
Review comment:
@aviemzur
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]