From 268bf6440e7c5259dededc85eae11e3d1a5636e9 Mon Sep 17 00:00:00 2001 From: Jeff Horemans Date: Wed, 7 Aug 2024 13:57:55 +0200 Subject: [PATCH] Removed superflous comment. --- lib/sqlalchemy/dialects/sqlite/base.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/sqlalchemy/dialects/sqlite/base.py b/lib/sqlalchemy/dialects/sqlite/base.py index b86ee24fb1..16b8b8cc90 100644 --- a/lib/sqlalchemy/dialects/sqlite/base.py +++ b/lib/sqlalchemy/dialects/sqlite/base.py @@ -2626,11 +2626,6 @@ class SQLiteDialect(default.DefaultDialect): CHECK_PATTERN = r"(?:CONSTRAINT ([^\n^\t]+) +)?CHECK *\( *(.+?) *\)(?:, ?\n|\n) *" cks = [] - # NOTE: we aren't using re.S here because we actually are - # taking advantage of each CHECK constraint being all on one - # line in the table definition in order to delineate. This - # necessarily makes assumptions as to how the CREATE TABLE - # was emitted. for match in re.finditer(CHECK_PATTERN, table_data or "", re.I|re.S): name = match.group(1) -- 2.47.3