Linking content check

This commit is contained in:
hyugogirubato
2025-10-19 19:47:27 +02:00
parent 6a1111a6bb
commit abc69d4673
+1 -1
View File
@@ -98,7 +98,7 @@ class PageInfo(PageModel):
path = Path(path) path = Path(path)
with path.open(mode='rb') as f: with path.open(mode='rb') as f:
kwargs.setdefault('name', path.name) kwargs.setdefault('name', path.name)
return cls(f.read(), **kwargs) return cls.loads(f.read(), **kwargs)
def show(self) -> None: def show(self) -> None:
""" """