mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-05 23:10:16 +00:00
Shorten str for case insensitive dict
This commit is contained in:
@@ -109,7 +109,7 @@ class CaseInsensitiveDict(collections.MutableMapping):
|
||||
return '%s(%r)' % (self.__class__.__name__, dict(self.items()))
|
||||
|
||||
def __str__(self):
|
||||
return '%s' % (dict(self.items()))
|
||||
return str(dict(self.items()))
|
||||
|
||||
|
||||
class LookupDict(dict):
|
||||
|
||||
Reference in New Issue
Block a user