summaryrefslogtreecommitdiffstats
path: root/gitlint-core/gitlint/cache.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-03-11 08:03:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-03-11 08:03:03 +0000
commitde139943d8272773b5f19ed824d687b0232b9ba3 (patch)
tree47e73755bffd41bdde2d59d76cc595f5a1fa75d4 /gitlint-core/gitlint/cache.py
parentAdding upstream version 0.19.0~dev. (diff)
downloadgitlint-de139943d8272773b5f19ed824d687b0232b9ba3.tar.xz
gitlint-de139943d8272773b5f19ed824d687b0232b9ba3.zip
Adding upstream version 0.19.1.upstream/0.19.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gitlint-core/gitlint/cache.py')
-rw-r--r--gitlint-core/gitlint/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlint-core/gitlint/cache.py b/gitlint-core/gitlint/cache.py
index b84c904..a3dd0c8 100644
--- a/gitlint-core/gitlint/cache.py
+++ b/gitlint-core/gitlint/cache.py
@@ -13,7 +13,7 @@ class PropertyCache:
return self._cache[cache_key]
-def cache(original_func=None, cachekey=None): # pylint: disable=unused-argument
+def cache(original_func=None, cachekey=None):
"""Cache decorator. Caches function return values.
Requires the parent class to extend and initialize PropertyCache.
Usage: