fix: add missing os import
Browse files- __pycache__/main.cpython-313.pyc +0 -0
- main.py +1 -0
__pycache__/main.cpython-313.pyc
CHANGED
|
Binary files a/__pycache__/main.cpython-313.pyc and b/__pycache__/main.cpython-313.pyc differ
|
|
|
main.py
CHANGED
|
@@ -10,6 +10,7 @@ from image.remove_metadata import RemoveMetadata
|
|
| 10 |
from image.remove_background import RemoveBackground
|
| 11 |
from PDF.images_to_pdf import ImagesToPDF
|
| 12 |
import mimetypes
|
|
|
|
| 13 |
|
| 14 |
app = FastAPI(title="Tools Collection", description="Collection of utility tools")
|
| 15 |
|
|
|
|
| 10 |
from image.remove_background import RemoveBackground
|
| 11 |
from PDF.images_to_pdf import ImagesToPDF
|
| 12 |
import mimetypes
|
| 13 |
+
import os
|
| 14 |
|
| 15 |
app = FastAPI(title="Tools Collection", description="Collection of utility tools")
|
| 16 |
|