File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -210,12 +210,15 @@ def select_lightness():
210
210
return def_lightness
211
211
212
212
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 )
214
217
assert 0 <= lightness <= 1
215
218
return lightness
216
219
217
220
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 ' )
219
222
220
223
lightness = select_lightness ()
221
224
_prs = _prs .set_light_dl (lightness , light_dark )
You can’t perform that action at this time.
0 commit comments