Remove unused imports

- routes.py: Remove unused re, hashlib, ArtifactResponse imports
- storage.py: Remove unused ABC, abstractmethod imports (using Protocol instead)
This commit is contained in:
Mondo Diaz
2026-01-05 15:47:22 -06:00
parent af66fd5845
commit ee14dbe878
2 changed files with 0 additions and 4 deletions

View File

@@ -17,9 +17,7 @@ from sqlalchemy.orm import Session
from sqlalchemy import or_, func, text
from typing import List, Optional, Literal
import math
import re
import io
import hashlib
from .database import get_db
from .storage import (
@@ -53,7 +51,6 @@ from .schemas import (
TagSummary,
PACKAGE_FORMATS,
PACKAGE_PLATFORMS,
ArtifactResponse,
ArtifactDetailResponse,
ArtifactTagInfo,
PackageArtifactResponse,

View File

@@ -1,6 +1,5 @@
import hashlib
import logging
from abc import ABC, abstractmethod
from typing import (
BinaryIO,
Tuple,