Skip to content

Commit 3901b81

Browse files
committed
mute isinstance
1 parent 650a8e2 commit 3901b81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/django_mysql/models/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ def __init__(
466466
if not hasattr(name, "resolve_expression"):
467467
name = Value(name)
468468

469-
if isinstance(value, dict):
469+
if isinstance(value, dict): # type: ignore [unreachable]
470470
raise ValueError("ColumnAdd with nested values is not supported")
471471
if not hasattr(value, "resolve_expression"):
472472
value = Value(value)

0 commit comments

Comments
 (0)