Skip to content

Commit de33bf8

Browse files
jdclaude
andauthored
chore(deps): bump sqlparse from 0.5.3 to 0.5.5 (#255)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 11f18ed commit de33bf8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sql_compare/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def tokens(self) -> Generator[Token | TokenList, None, None]:
245245
@property
246246
def flatten_tokens(self) -> Generator[Token, None, None]:
247247
"""Yield all tokens in the token tree."""
248-
yield from (Token(t) for t in self.token_list.flatten())
248+
yield from (Token(t) for t in self.token_list.flatten()) # type: ignore[no-untyped-call]
249249

250250
@staticmethod
251251
def _split_identifiers(tokens: list[Token]) -> SplitIdentifierResult:

0 commit comments

Comments
 (0)