diff --git a/joplinexport.py b/joplinexport.py index 9dd669e..800267b 100755 --- a/joplinexport.py +++ b/joplinexport.py @@ -89,7 +89,6 @@ class JoplinExporter: conn = sqlite3.connect(self.joplin_dir / "database.sqlite") c = conn.cursor() - # Create table c.execute("""SELECT id, title FROM folders;""") self.folders = {id: title for id, title in c.fetchall()}