summaryrefslogtreecommitdiff
path: root/alot/completion
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-05-13 15:10:34 +0200
committerAnton Khirnov <anton@khirnov.net>2021-05-13 15:10:34 +0200
commit954d79c47d4c123d1dafc2c670d79685b7ce84b1 (patch)
tree85032afabb7e5ba1f620c1b3bd7dd963be95ad84 /alot/completion
parentfe6a3233800630c9ac6e6668f6eb048e8ab1d321 (diff)
utils/cached_property: replace with the stdlib implementation
Diffstat (limited to 'alot/completion')
-rw-r--r--alot/completion/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/completion/command.py b/alot/completion/command.py
index 72c82ea3..43ffcea2 100644
--- a/alot/completion/command.py
+++ b/alot/completion/command.py
@@ -2,12 +2,12 @@
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
+from functools import cached_property
import logging
from alot import commands
from alot.buffers import EnvelopeBuffer
from alot.settings.const import settings
-from alot.utils.cached_property import cached_property
from .completer import Completer
from .commandname import CommandNameCompleter
from .tag import TagCompleter