Skip to content

Commit e49868f

Browse files
committed
mute isinstance
1 parent 59c0970 commit e49868f

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
@@ -469,7 +469,7 @@ def __init__(
469469
if not hasattr(name, "resolve_expression"):
470470
name = Value(name)
471471

472-
if isinstance(value, dict):
472+
if isinstance(value, dict): # type: ignore [unreachable]
473473
raise ValueError("ColumnAdd with nested values is not supported")
474474
if not hasattr(value, "resolve_expression"):
475475
value = Value(value)

0 commit comments

Comments
 (0)