13 lines
271 B
Python
13 lines
271 B
Python
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
def resolve_storage_path(storage_path: str) -> Path:
|
|
path = Path(storage_path)
|
|
if path.is_absolute():
|
|
return path
|
|
return Path(settings.MEDIA_ROOT) / path
|