Skip to content
Snippets Groups Projects
Commit 5ec2ba94 authored by Ugo Albanese's avatar Ugo Albanese
Browse files

[NRRPLT-0000] Remove import in __init__ that prevented setup.py from running...

[NRRPLT-0000] Remove import in __init__ that prevented setup.py from running due to a circular dependency.

setup.py importing pynrp for learning its version, runs virtual_coach that ends up failing
since its requirements haven't been installed yet (by setup.py).
parent 39518310
No related branches found
No related tags found
No related merge requests found
......@@ -3,5 +3,4 @@ This package contains the Virtual Coach implementation and interfaces to the Neu
Platform backend services.
"""
from pynrp.version import VERSION as __version__ # pylint: disable=W0611
from pynrp.virtual_coach import VirtualCoach
\ No newline at end of file
from pynrp.version import VERSION as __version__ # pylint: disable=W0611
\ No newline at end of file
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