Remove unnecessary comma

This commit is contained in:
Eugenio Lacuesta 2021-08-19 14:12:55 -03:00
parent 5792e1c922
commit 10ebf6384e
No known key found for this signature in database
GPG Key ID: DA3EF2D0913E9810
1 changed files with 1 additions and 1 deletions

View File

@ -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.