anderson-ufrj
commited on
Commit
·
5329c6d
1
Parent(s):
6480e7b
fix: add missing List import in compression_service
Browse files- Added List to typing imports
- Fixed NameError preventing application startup
- Required for type annotations in _get_available_algorithms method
src/services/compression_service.py
CHANGED
|
@@ -7,7 +7,7 @@ License: Proprietary - All rights reserved
|
|
| 7 |
"""
|
| 8 |
|
| 9 |
import time
|
| 10 |
-
from typing import Dict, Any, Optional, Tuple
|
| 11 |
from enum import Enum
|
| 12 |
import gzip
|
| 13 |
import zlib
|
|
|
|
| 7 |
"""
|
| 8 |
|
| 9 |
import time
|
| 10 |
+
from typing import Dict, Any, Optional, Tuple, List
|
| 11 |
from enum import Enum
|
| 12 |
import gzip
|
| 13 |
import zlib
|