Skip to content

Commit 31b3459

Browse files
committed
mute isinstance
1 parent c99f187 commit 31b3459

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
@@ -405,7 +405,7 @@ def __init__(
405405
if not hasattr(name, "resolve_expression"):
406406
name = Value(name)
407407

408-
if isinstance(value, dict):
408+
if isinstance(value, dict): # type: ignore [unreachable]
409409
raise ValueError("ColumnAdd with nested values is not supported")
410410
if not hasattr(value, "resolve_expression"):
411411
value = Value(value)

0 commit comments

Comments
 (0)