Skip to content

Commit 9f97200

Browse files
committed
Removed unwanted print instruction.
1 parent 6f0bab4 commit 9f97200

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

jmespath/lexer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ class Lexer(object):
3030

3131
def tokenize(self, expression):
3232
self._initialize_for_expression(expression)
33-
print(self._current in self.SIMPLE_TOKENS)
3433
while self._current is not None:
3534
if self._current in self.SIMPLE_TOKENS:
3635
yield {'type': self.SIMPLE_TOKENS[self._current],

0 commit comments

Comments
 (0)