Kleine Anpassungen in der config.py

This commit is contained in:
2025-06-06 20:32:23 +02:00
parent 1b08c6426a
commit f918ed19d9
+4 -4
View File
@@ -31,7 +31,7 @@ class ApacheFop(BaseModel):
class XslDir(BaseModel):
name: str
path_to_root_dir: Path
class PdfProject(BaseModel):
name: str
@@ -50,11 +50,11 @@ class AppSettings(BaseSettings):
saxon_jars: list[SaxonJar]
apache_fops: list[ApacheFop]
pdf_projects: list[PdfProject] = []
class PdfProjectSettings(BaseSettings):
"""
Speichert Projekt-Einstellungen direkt im Ordner des Projekts in einer klartextdatei
Speichert Projekt-Einstellungen direkt im Ordner des Projekts in einer Klartextdatei (JSON, YAML oder XML)
"""
pass