Skip to content

Commit

Permalink
update import path
Browse files Browse the repository at this point in the history
  • Loading branch information
jashlu committed Nov 26, 2024
1 parent 3470d21 commit ca3cd33
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion social_norms_trees/atomic_mutations.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import click
import typer

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
4 changes: 2 additions & 2 deletions social_norms_trees/ui_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

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 colorama import Fore, Back, Style

from interactive_ui import run_interactive_list
Expand Down

0 comments on commit ca3cd33

Please sign in to comment.