Skip to content
Snippets Groups Projects
Commit 27c8af87a0c9 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

pytype: use the right signature for the `__delitem__`

It is not because it is NotImplemented that it should use a bad signature. Fix
it to please pytype.
parent 4b4253b3ec0a
No related branches found
No related tags found
1 merge request!744fixes various issue pointed by newer pytype
......@@ -137,7 +137,7 @@
def __setitem__(self, k, v):
raise NotImplementedError
def __delitem__(self):
def __delitem__(self, k):
raise NotImplementedError
def _fetchandcache(self, key):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment