Skip to content

Commit

Permalink
chore(sql-checker): remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
Zitrone44 committed Dec 9, 2024
1 parent 13f4d3e commit 5e79525
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions modules/fbs-sql-checker/api/comparator/sqlparse_comparator.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,15 +196,13 @@ def _should_compare(self, token, comparator) -> bool:
return False

def recursive_visit(self, token: sqlparse.sql.Statement):
print(token)
self._should_compare(
token,
lambda is_token, should_token: is_token.__class__ == should_token.__class__,
)
super().recursive_visit(token)

def visit_literal(self, token: sqlparse.tokens.Token):
print(token)
if token.ttype != Whitespace:
self._should_compare(
token,
Expand Down

0 comments on commit 5e79525

Please sign in to comment.