Spaces:
Running on Zero
Running on Zero
File size: 238 Bytes
bc02199 | 1 2 3 4 5 6 7 8 9 10 11 12 | """Image helpers for the initial MVP."""
from __future__ import annotations
from pathlib import Path
def image_filename(image_path: str | None) -> str:
if not image_path:
return "no image"
return Path(image_path).name
|