Browse Source

Fix queue print time for plate selection

MisterBeardy 3 months ago
parent
commit
215e750d04
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/app/api/routes/print_queue.py

+ 1 - 1
backend/app/api/routes/print_queue.py

@@ -2,11 +2,11 @@
 
 import json
 import logging
-import xml.etree.ElementTree as ET
 import zipfile
 from datetime import datetime
 from pathlib import Path
 
+from defusedxml import ElementTree as ET
 from fastapi import APIRouter, Depends, HTTPException, Query
 from sqlalchemy import func, select
 from sqlalchemy.ext.asyncio import AsyncSession