[7.x] Switch to MutableMapping for headers/params

This commit is contained in:
Seth Michael Larson
2020-09-28 15:49:14 -05:00
committed by Seth Michael Larson
parent 631a6d2fa8
commit cde2a53468
68 changed files with 1441 additions and 1440 deletions
+2 -2
View File
@@ -20,5 +20,5 @@
{% endif %}
{% endfor %}
params: Optional[Mapping[str, Any]]=...,
headers: Optional[Mapping[str, str]]=...
params: Optional[MutableMapping[str, Any]]=...,
headers: Optional[MutableMapping[str, str]]=...