Skip to content

Commit 812d38f

Browse files
committed
mute isinstance
1 parent f1543a3 commit 812d38f

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

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

0 commit comments

Comments
 (0)