Skip to content

Commit facdc62

Browse files
committed
mute isinstance
1 parent a6f7929 commit facdc62

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

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

0 commit comments

Comments
 (0)