"not key in" -> "key not in"

This commit is contained in:
James Fitzgerald 2022-07-24 08:39:27 -04:00 committed by xs5871
parent 74563368c5
commit fe6510baec

View File

@ -76,7 +76,7 @@ class Combos(Module):
self._combo_keys = []
for combo in self.combos:
for k in combo.match:
if not k in self._combo_keys:
if k not in self._combo_keys:
self._combo_keys.append(k)
make_key(
names=('LEADER', 'LDR'),