From 5597ebaf9b4f55f12be597a076be9db487b0fe1e Mon Sep 17 00:00:00 2001 From: rachmadaniHaryono Date: Sun, 28 Apr 2019 09:27:52 +0800 Subject: [PATCH] fix: test: circleci --- buku | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buku b/buku index 3ab9caf..5cdbee4 100755 --- a/buku +++ b/buku @@ -397,7 +397,7 @@ class BukuDb: return os.path.join(data_home, 'buku') @staticmethod - def initdb(dbfile: Optional[str]=None, chatty: Optional[bool]=False) -> Tuple[sqlite3.Connection, sqlite3.Cursor]: + def initdb(dbfile: Optional[str] = None, chatty: Optional[bool] = False) -> Tuple[sqlite3.Connection, sqlite3.Cursor]: """Initialize the database connection. Create DB file and/or bookmarks table if they don't exist. @@ -538,7 +538,7 @@ class BukuDb: tags_in: Optional[str] = None, desc: Optional[str] = None, immutable: Optional[int] = 0, - delay_commit: Optional[bool]=False, + delay_commit: Optional[bool] = False, fetch: Optional[bool] = True) -> int: """Add a new bookmark. @@ -2028,7 +2028,7 @@ class BukuDb: return False - def exportdb(self, filepath: str, resultset: Optional[Tuple[Any]]=None) -> bool: + def exportdb(self, filepath: str, resultset: Optional[Tuple[Any]] = None) -> bool: """Export DB bookmarks to file. Exports full DB, if resultset is None