chg: dev: buku record annotation

This commit is contained in:
rachmadaniHaryono 2019-05-13 05:11:54 +08:00
parent 4fa973d306
commit a04dce8341

4
buku
View File

@ -34,7 +34,7 @@ from subprocess import Popen, PIPE, DEVNULL
import sys
import threading
import time
from typing import Any, Dict, List, Optional, Tuple
from typing import Any, Dict, List, Optional, Tuple, Union
import webbrowser
try:
import readline
@ -333,7 +333,7 @@ class BukuCrypt:
sys.exit(1)
BookmarkVar = Tuple[int, str, str, str, str, int]
BookmarkVar = Tuple[int, str, Union[str, None], str, str, int]
class BukuDb: