Skip to content

Commit c687f07

Browse files
authored
Fix error in output.py
Do not mix local and absolute import. Moreover, this module is imported in the __init__.py So the package openalea.stat_tool is not yet loaded.
1 parent 5411d15 commit c687f07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stat_tool/src/openalea/stat_tool/output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
)
2727

2828
# Output functions
29-
from openalea.stat_tool._stat_tool import (
29+
from ._stat_tool import (
3030
FORWARD_DYNAMIC_PROGRAMMING,
3131
FORWARD_BACKWARD_SAMPLING, GENERALIZED_VITERBI,
3232
FORWARD_BACKWARD_SAMPLING,

0 commit comments

Comments
 (0)