Tue, 22 Nov 2022 16:33:30 +0100
Continued refactoring of the project browser related code in order to extract some as plugins later on (added a file category repository to the Project class).
# -*- coding: utf-8 -*- # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing a data structure holding the data associated with a file type category. """ from dataclasses import dataclass @dataclass class FileCategoryRepositoryItem: """ Class holding the data associated with a file type category. """ fileCategoryFilterTemplate: str fileCategoryUserString: str fileCategoryTyeString: str fileCategoryExtensions: list