We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52fb81b commit e684d49Copy full SHA for e684d49
src/pdfbaker/document.py
@@ -102,9 +102,7 @@ def __init__(
102
def determine_pages(self, config: dict[str, Any]) -> list[Path]:
103
"""Determine pages for the give (document/variant) configuration."""
104
if "pages" not in config:
105
- raise ConfigurationError(
106
- f'Cannot determine pages for "{self.name}"'
107
- )
+ raise ConfigurationError(f'Cannot determine pages for "{self.name}"')
108
pages = []
109
for page_spec in config["pages"]:
110
if isinstance(page_spec, dict) and "path" in page_spec:
0 commit comments