Skip to content

Commit

Permalink
Update tasks/gpsr/states/command_similarity_matcher.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jared Swift <[email protected]>
  • Loading branch information
m-barker and jws-1 authored Apr 23, 2024
1 parent 7591641 commit 2218c08
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tasks/gpsr/states/command_similarity_matcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def execute(self, userdata):
sm = smach.StateMachine(outcomes=["succeeded", "failed"])
with sm:
sm.userdata.tts_phrase = "Please tell me your command."
sm.userdata.n_vecs_per_txt_file = [1177943] * 10
# smach.StateMachine.add(
# "ASK_FOR_COMMAND",
# AskAndListen(),
Expand All @@ -71,7 +70,7 @@ def execute(self, userdata):
)
sm.add(
"COMMAND_SIMILARITY_MATCHER",
CommandSimilarityMatcher(),
CommandSimilarityMatcher([1177943] * 10),
transitions={"succeeded": "LISTEN"},
)
# smach.StateMachine.add(
Expand Down

0 comments on commit 2218c08

Please sign in to comment.