We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6df6e64 commit aa46409Copy full SHA for aa46409
CacheToolsUtils.py
@@ -25,7 +25,8 @@
25
class _MutMapMix:
26
"""Convenient MutableMapping Mixin, forward to _cache."""
27
28
- _cache: MutableMapping
+ # FIXME coverage reports this as missing with Python 3.14
29
+ _cache: MutableMapping # pragma: no cover
30
31
def __contains__(self, key):
32
return self._cache.__contains__(key)
0 commit comments