Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Commit

Permalink
fix: use better name
Browse files Browse the repository at this point in the history
  • Loading branch information
nullishamy committed May 24, 2024
1 parent 8ff5f1f commit 43b4b5e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class Suffix:
false_value: str = ""


IS_OLED = Suffix(true_value='-oled', false_value='-standard', test=lambda ctx: ctx.tweaks.has('black'))
IS_DARK = Suffix(true_value="-Dark", test=lambda ctx: ctx.flavor.dark)
IS_LIGHT = Suffix(true_value="-Light", test=lambda ctx: not ctx.flavor.dark)
IS_WINDOW_NORMAL = Suffix(true_value="-Normal", test=lambda ctx: ctx.tweaks.has('normal'))
Expand Down Expand Up @@ -567,7 +566,7 @@ def parse_args():
default=[],
nargs="+",
dest="tweaks",
choices=["black", "rimless", "normal", "float", "oled"],
choices=["black", "rimless", "normal", "float"],
help="Tweaks to apply to the build.",
)

Expand Down

0 comments on commit 43b4b5e

Please sign in to comment.