Skip to content

Commit

Permalink
Fix tabs in core solver
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekraghuram committed Oct 16, 2017
1 parent d02b7d9 commit 77ade80
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/nluas/app/core_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,18 +112,17 @@ def update_world(self, discovered=[]):
def solve_command(self, ntuple):
self.route_event(ntuple['eventDescriptor'], "command")
if self.verbose:
self.decoder.pprint_ntuple(ntuple)
self.decoder.pprint_ntuple(ntuple)

def solve_query(self, ntuple):
self.route_event(ntuple['eventDescriptor'], "query")
if self.verbose:
self.decoder.pprint_ntuple(ntuple)
self.decoder.pprint_ntuple(ntuple)

def solve_assertion(self, ntuple):
#parameters = ntuple['eventDescriptor']
self.route_event(ntuple['eventDescriptor'], "assertion")
if self.verbose:
self.decoder.pprint_ntuple(ntuple)
self.decoder.pprint_ntuple(ntuple)

def solve_conditional_command(self, ntuple):
""" Takes in conditionalED. (API changed 5/26/16, ST) """
Expand Down

0 comments on commit 77ade80

Please sign in to comment.