Skip to content

Commit 7f18d0e

Browse files
authored
[PR] #307 from Iris-TheRainbow: Allow lightness values without a % to parse
2 parents 2307f9d + 07e23e2 commit 7f18d0e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

hyfetch/main.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,15 @@ def select_lightness():
210210
return def_lightness
211211

212212
try:
213-
lightness = int(lightness[:-1]) / 100 if lightness.endswith('%') else float(lightness)
213+
if lightness.endswith('%') or int(lightness) > 1:
214+
lightness = int(lightness[:-1]) / 100 if lightness.endswith('%') else int(lightness) / 100
215+
else:
216+
lightness = float(lightness)
214217
assert 0 <= lightness <= 1
215218
return lightness
216219

217220
except Exception:
218-
printc('&cUnable to parse lightness value, please input it as a decimal or percentage (e.g. 0.5 or 50%)')
221+
printc('&cUnable to parse lightness value, please enter a lightness value such as 45%, .45, or 45')
219222

220223
lightness = select_lightness()
221224
_prs = _prs.set_light_dl(lightness, light_dark)

0 commit comments

Comments
 (0)