We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
version
1 parent 0d6186a commit b5dad76Copy full SHA for b5dad76
build.py
@@ -20,7 +20,9 @@
20
def load_palette_json() -> dict[str, Any]:
21
"""Load palette data from `./palette.json`."""
22
with Path("palette.json").open() as f:
23
- return cast(dict[str, Any], json.load(f))
+ palette_json = cast(dict[str, Any], json.load(f))
24
+ del palette_json["version"]
25
+ return palette_json
26
27
28
def make_color(identifier: str, fields: dict[str, Any]) -> Color:
0 commit comments