]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
Removed unnecessary mypy comment 1695/head
authordavid-fed <47917339+david-fed@users.noreply.github.com>
Sat, 12 Jul 2025 18:34:19 +0000 (20:34 +0200)
committerdavid-fed <47917339+david-fed@users.noreply.github.com>
Sat, 12 Jul 2025 18:34:19 +0000 (20:34 +0200)
alembic/ddl/mysql.py

index 397190ca61a49ef5d64ac9915d3447877225eec7..8f5f9252663d967bfb29b5764dc63634f3f97a7e 100644 (file)
@@ -70,7 +70,7 @@ class MySQLImpl(DefaultImpl):
             )
             or isinstance(expr, functions.FunctionElement)
         ):
-            expr = elements.Grouping(expr)  # type: ignore[arg-type]
+            expr = elements.Grouping(expr)
 
         return super().render_ddl_sql_expr(
             expr, is_server_default=is_server_default, is_index=is_index, **kw