Skip to content

Commit aa46409

Browse files
author
Fabien Coelho
committed
work around coverage on Python 3.14
1 parent 6df6e64 commit aa46409

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CacheToolsUtils.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
class _MutMapMix:
2626
"""Convenient MutableMapping Mixin, forward to _cache."""
2727

28-
_cache: MutableMapping
28+
# FIXME coverage reports this as missing with Python 3.14
29+
_cache: MutableMapping # pragma: no cover
2930

3031
def __contains__(self, key):
3132
return self._cache.__contains__(key)

0 commit comments

Comments
 (0)