We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0bab4 commit 9f97200Copy full SHA for 9f97200
jmespath/lexer.py
@@ -30,7 +30,6 @@ class Lexer(object):
30
31
def tokenize(self, expression):
32
self._initialize_for_expression(expression)
33
- print(self._current in self.SIMPLE_TOKENS)
34
while self._current is not None:
35
if self._current in self.SIMPLE_TOKENS:
36
yield {'type': self.SIMPLE_TOKENS[self._current],
0 commit comments