Skip to content

Commit

Permalink
removed debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kalpeshlanover committed May 16, 2018
1 parent 0b1e801 commit 0eb401c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions prakriya/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,10 @@ def removeUnnecessary(self, wholeresult, lakara='', suffices=['']):
output = {}
for member in wholeresult:
if lakara == '' and suffices == ['']:
print('debug1')
output[member] = wholeresult[member]
elif lakara != '' and suffices == ['']:
print('debug2')
output[member] = wholeresult[member][lakara]
elif lakara != '' and suffices != ['']:
print('debug3')
for suffix in suffices:
if suffix in wholeresult[member][lakara]:
output[member] = wholeresult[member][lakara][suffix]
Expand Down

0 comments on commit 0eb401c

Please sign in to comment.