🎉 Improved backend structure & documentation, optimized files for better performance. 🛠️ Removed unnecessary files: app_timer_routes.py, settings_copy.cpython-311.pyc, myp.db-shm, myp.db-wal. 📚 Added new files: STRG_C_SHUTDOWN.md, SSL_CONFIG.md.
This commit is contained in:
BIN
backend/utils/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/analytics.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/analytics.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/backup_manager.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/backup_manager.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/database_cleanup.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/database_cleanup.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/database_utils.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/database_utils.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/drag_drop_system.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/drag_drop_system.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/file_manager.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/file_manager.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/form_validation.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/form_validation.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/job_scheduler.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/job_scheduler.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/logging_config.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/logging_config.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/permissions.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/permissions.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/printer_monitor.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/printer_monitor.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/queue_manager.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/queue_manager.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/rate_limiter.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/rate_limiter.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/report_generator.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/report_generator.cpython-311.pyc
Normal file
Binary file not shown.
Binary file not shown.
BIN
backend/utils/__pycache__/security.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/security.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/ssl_config.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/ssl_config.cpython-311.pyc
Normal file
Binary file not shown.
BIN
backend/utils/__pycache__/template_helpers.cpython-311.pyc
Normal file
BIN
backend/utils/__pycache__/template_helpers.cpython-311.pyc
Normal file
Binary file not shown.
@@ -302,8 +302,13 @@ class PDFReportGenerator(BaseReportGenerator):
|
||||
self.story.append(drawing)
|
||||
self.story.append(Spacer(1, 0.2*inch))
|
||||
|
||||
def _create_chart_drawing(self, chart: ChartData) -> Optional[Drawing]:
|
||||
def _create_chart_drawing(self, chart: ChartData) -> Optional[Any]:
|
||||
"""Erstellt ein Diagramm-Drawing"""
|
||||
# Überprüfe ob PDF-Bibliotheken verfügbar sind
|
||||
if not PDF_AVAILABLE:
|
||||
logger.warning("PDF-Bibliotheken nicht verfügbar - Diagramm wird übersprungen")
|
||||
return None
|
||||
|
||||
try:
|
||||
drawing = Drawing(400, 300)
|
||||
|
||||
|
Reference in New Issue
Block a user