config/qtile: remove unnecessary type ignores

This commit is contained in:
Infinidoge 2023-09-16 11:52:05 -04:00
parent 88d9f6091d
commit 0cc0392cbf

View file

@ -480,8 +480,8 @@ groups.append(
ScratchPad(
"scratchpad",
[
DropDown("calculator", "speedcrunch", x=0.2, y=0.2, width=0.6, height=0.6), # type: ignore
DropDown("arandr", "arandr", x=0.2, y=0.1, width=0.6, height=0.4), # type: ignore
DropDown("calculator", "speedcrunch", x=0.2, y=0.2, width=0.6, height=0.6),
DropDown("arandr", "arandr", x=0.2, y=0.1, width=0.6, height=0.4),
],
)
)