Update modules/__init__.py
Browse files- modules/__init__.py +3 -1
modules/__init__.py
CHANGED
@@ -18,7 +18,8 @@ def load_current_situation_functions():
|
|
18 |
"""
|
19 |
from .studentact.current_situation_interface import (
|
20 |
display_current_situation_interface,
|
21 |
-
display_current_situation_visual
|
|
|
22 |
)
|
23 |
from .studentact.current_situation_analysis import (
|
24 |
analyze_text_dimensions,
|
@@ -30,6 +31,7 @@ def load_current_situation_functions():
|
|
30 |
return {
|
31 |
'display_current_situation_interface': display_current_situation_interface,
|
32 |
'display_current_situation_visual': display_current_situation_visual,
|
|
|
33 |
'analyze_text_dimensions': analyze_text_dimensions,
|
34 |
'create_vocabulary_network': create_vocabulary_network,
|
35 |
'create_syntax_complexity_graph': create_syntax_complexity_graph,
|
|
|
18 |
"""
|
19 |
from .studentact.current_situation_interface import (
|
20 |
display_current_situation_interface,
|
21 |
+
display_current_situation_visual,
|
22 |
+
show_recommendations
|
23 |
)
|
24 |
from .studentact.current_situation_analysis import (
|
25 |
analyze_text_dimensions,
|
|
|
31 |
return {
|
32 |
'display_current_situation_interface': display_current_situation_interface,
|
33 |
'display_current_situation_visual': display_current_situation_visual,
|
34 |
+
'show_recommendations': show_recommendations,
|
35 |
'analyze_text_dimensions': analyze_text_dimensions,
|
36 |
'create_vocabulary_network': create_vocabulary_network,
|
37 |
'create_syntax_complexity_graph': create_syntax_complexity_graph,
|