Skip to content

Commit

Permalink
readadd social_norms_tree path
Browse files Browse the repository at this point in the history
  • Loading branch information
jashlu committed Nov 27, 2024
1 parent 0a9a442 commit ca8bd16
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions social_norms_trees/atomic_mutations.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
from types import GenericAlias
from typing import Callable, List, Mapping, NamedTuple, Tuple, TypeVar, Union, Dict


from behavior_tree_library import Behavior, Composite, Sequence
from social_norms_trees.behavior_tree_library import Behavior, Composite, Sequence

from pprint import pprint

Expand Down
2 changes: 1 addition & 1 deletion social_norms_trees/interactive_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from typing import Optional, List, Callable

from behavior_tree_library import Behavior
from social_norms_trees.behavior_tree_library import Behavior


def run_interactive_list(nodes: List, mode: str, new_behavior: Optional[Behavior] = None):
Expand Down
6 changes: 3 additions & 3 deletions social_norms_trees/ui_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
import time
import typer

from behavior_tree_library import Behavior, Sequence
from atomic_mutations import remove, insert, move
from social_norms_trees.behavior_tree_library import Behavior, Sequence
from social_norms_trees.atomic_mutations import remove, insert, move

from interactive_ui import run_interactive_list
from social_norms_trees.interactive_ui import run_interactive_list

# import keyboard # Make sure to install this module with `pip install keyboard`

Expand Down

0 comments on commit ca8bd16

Please sign in to comment.