diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-14 21:59:09 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-14 21:59:28 -0500 |
| commit | 6d5d1318f36e8e55429dd000ed5841b293558aee (patch) | |
| tree | 8c35215c1a057ce474de8cc4c1c506059b71c5d6 /scripts/theme-studio/generate.py | |
| parent | 716bc2353c5136564b9ed6c653219802577df97c (diff) | |
| download | dotemacs-6d5d1318f36e8e55429dd000ed5841b293558aee.tar.gz dotemacs-6d5d1318f36e8e55429dd000ed5841b293558aee.zip | |
chore(theme-studio): remove dead code and clear a type warning
- ramp (app-core.js) and its test-ramp.mjs: superseded by regenColumn, no production caller.
- optList (app-core.js) and its tests: superseded by paletteOptionList.
- ITALIC in generate.py: computed, never read (ITALIC_MAP is the live one).
- a stray empty string in MU4E_FACES that .split() silently dropped.
- the dead #familytest alias in the columntest gate, which HASHES never listed.
- widen face_rows to Sequence[str], clearing the list-invariance warnings on the APPS calls.
Diffstat (limited to 'scripts/theme-studio/generate.py')
| -rw-r--r-- | scripts/theme-studio/generate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/theme-studio/generate.py b/scripts/theme-studio/generate.py index e3ec3981..523f3206 100644 --- a/scripts/theme-studio/generate.py +++ b/scripts/theme-studio/generate.py @@ -212,7 +212,7 @@ UIMAP=build_uimap(UI_FACES,DEFAULTS) # this dir), instead of the hardcoded defaults above. Unset leaves them unchanged. # Placed after every default it overrides (notably UIMAP) so the merge has targets. # Mirrors what the in-page Import does, so reseed and import agree. -LOCKS=[]; ITALIC=[k for k,v in ITALIC_MAP.items() if v] +LOCKS=[] # THEME_STUDIO_SEED=<file>.json opens an existing theme as the starting point. # Unset starts empty: only bg/fg are in the palette. _seed=os.environ.get('THEME_STUDIO_SEED') |
