Skip to content

Commit

Permalink
Removed unwanted print instruction.
Browse files Browse the repository at this point in the history
  • Loading branch information
springcomp committed Oct 22, 2022
1 parent 6f0bab4 commit 9f97200
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion jmespath/lexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class Lexer(object):

def tokenize(self, expression):
self._initialize_for_expression(expression)
print(self._current in self.SIMPLE_TOKENS)
while self._current is not None:
if self._current in self.SIMPLE_TOKENS:
yield {'type': self.SIMPLE_TOKENS[self._current],
Expand Down

0 comments on commit 9f97200

Please sign in to comment.