From 24d5ec7f533f0788a563a2717a153b5daa8928e0 Mon Sep 17 00:00:00 2001 From: lorenpike Date: Fri, 9 Feb 2024 06:52:00 -0800 Subject: [PATCH] Fixed a typo --- multipart/multipart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multipart/multipart.py b/multipart/multipart.py index be0f01f..caf1fdf 100644 --- a/multipart/multipart.py +++ b/multipart/multipart.py @@ -110,7 +110,7 @@ def parse_options_header(value: Union[str, bytes]) -> Tuple[bytes, Dict[bytes, b options = {} for param in params: key, value = param - # If the value return from get_params() is a 3-tuple, the last + # If the value returned from get_params() is a 3-tuple, the last # element corresponds to the value. # See: https://docs.python.org/3/library/email.compat32-message.html if isinstance(value, tuple):