summaryrefslogtreecommitdiff
path: root/poezio/bookmarks.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/bookmarks.py')
-rw-r--r--poezio/bookmarks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/bookmarks.py b/poezio/bookmarks.py
index d842d2dd..4ce06cf0 100644
--- a/poezio/bookmarks.py
+++ b/poezio/bookmarks.py
@@ -152,7 +152,7 @@ class Bookmark:
class BookmarkList:
def __init__(self):
- self.bookmarks = [] # type: List[Bookmark]
+ self.bookmarks: List[Bookmark] = []
preferred = config.get('use_bookmarks_method').lower()
if preferred not in ('pep', 'privatexml'):
preferred = 'privatexml'