mirror of https://github.com/scrapy/scrapy.git
Remove unnecessary comma
This commit is contained in:
parent
5792e1c922
commit
10ebf6384e
|
|
@ -79,7 +79,7 @@ class CaselessDict(dict):
|
|||
return dict.pop(self, self.normkey(key), *args)
|
||||
|
||||
|
||||
class CaseInsensitiveDict(collections.UserDict,):
|
||||
class CaseInsensitiveDict(collections.UserDict):
|
||||
"""A dict-like structure that accepts strings or bytes as keys and allows case-insensitive lookups.
|
||||
|
||||
It also allows overriding key and value normalization by defining custom `normkey` and `normvalue` methods.
|
||||
|
|
|
|||
Loading…
Reference in New Issue