diff --git a/doc_manager.py b/doc_manager.py index 8e53025..fe1229d 100644 --- a/doc_manager.py +++ b/doc_manager.py @@ -5,9 +5,8 @@ from datetime import datetime from typing import List import org_rw -from org_rw import OrgTime, OrgDoc +from org_rw import OrgTime -EXTENSIONS = ( ".org", ".org.txt" ) def is_today(ot: OrgTime): now = datetime.now() @@ -38,19 +37,17 @@ class Agenda: class DocumentManager: - docs: list[OrgDoc] - - def __init__(self, base_path: os.PathLike): - self.base_path = base_path + def __init__(self, basepath): + self.basepath = basepath def load(self): - top = os.path.abspath(self.base_path) + top = os.path.abspath(self.basepath) docs = [] for root, dirs, files in os.walk(top): for name in files: - if all(map(lambda ext: not name.endswith(ext), EXTENSIONS)): + if ".org" not in name: continue path = os.path.join(root, name) diff --git a/main.py b/main.py index 7128930..418546c 100755 --- a/main.py +++ b/main.py @@ -33,9 +33,6 @@ class Dialog(QDialog): super(Dialog, self).__init__() self.setWindowTitle("OrgEditor") - scrSize = self.screen().size() - self.resize(scrSize.width() / 1.5, - scrSize.height() / 1.5) self.loader = None self.manager = doc_manager.DocumentManager(DOCS_PATH)