Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/registral_dispersion/json_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _package_version() -> str:
return "unknown"


def _export_provenance() -> dict[str, str]:
def _export_provenance() -> dict[str, str | bool]:
"""Software identity for reproducible exports (JSON; mirrored in CSV comments where applicable)."""
return {
"package_name": "registral-dispersion",
Expand Down
2 changes: 1 addition & 1 deletion src/registral_dispersion/visual_theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
]

PLOTLY_EMBER_SCALE: list[list[float | str]] = [
[pos, col] for pos, col in _EMBER_STOPS # type: ignore[misc]
[pos, col] for pos, col in _EMBER_STOPS
]

FONT_SERIF = "Georgia, 'Palatino Linotype', 'Times New Roman', serif"
Expand Down
Loading