from __future__ import annotations from PIL import Image from planemapper.constants import BACKGROUND_PATH def load() -> Image.Image: return Image.open(BACKGROUND_PATH).copy()