From 91aa242a5a832188b766e1f9225998fb2f3335cb Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 22 Mar 2026 05:35:12 -0400 Subject: [PATCH] Fix python-multipart import deprecation warning Use `python_multipart` import name instead of deprecated `multipart`. Co-Authored-By: Claude Opus 4.6 (1M context) --- responder/formats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/responder/formats.py b/responder/formats.py index a22d777..edd4a77 100644 --- a/responder/formats.py +++ b/responder/formats.py @@ -2,7 +2,7 @@ import json from urllib.parse import urlencode import yaml -from multipart import MultipartParser +from python_multipart import MultipartParser from .models import QueryDict