clean: rename bulk_album category

This commit is contained in:
2025-07-07 23:03:48 +02:00
parent a980dd8ead
commit 67a83708cf
7 changed files with 49 additions and 49 deletions

View File

@ -17,7 +17,7 @@ page_template = env.get_template('bulk_page.jinja')
class BulkPage():
def __init__(self, path: Path, name: str, pictures: list[Picture] = None, prev: Page|None = None, next: Page|None = None):
def __init__(self, path: Path, name: str, pictures: list[Picture] = None, prev: BulkPage|None = None, next: BulkPage|None = None):
self.name: str = name
self._path: Path = path
self._pictures: list[Picture] = pictures or []