Cleanup: autopep8

This commit is contained in:
Campbell Barton
2022-04-26 15:03:04 +10:00
parent 802bc8e233
commit e3724d29ff
6 changed files with 6 additions and 6 deletions

View File

@@ -668,7 +668,7 @@ class SpellChecker:
# Acronyms
"aa", "msaa",
"acescg", # ACEScg color space.
"acescg", # ACEScg color space.
"ao",
"aov", "aovs",
"api",

View File

@@ -391,7 +391,7 @@ def generate(context, space_type, *, use_fallback_keys=True, use_reset=True):
if key is not None:
kmi_args["type"] = key
kmi_tuple = dict_as_tuple(kmi_args)
if not kmi_tuple in kmi_unique_args:
if kmi_tuple not in kmi_unique_args:
kmi = keymap.keymap_items.new(idname="wm.tool_set_by_id", value='PRESS', **kmi_args)
kmi.properties.name = item.idname
kmi_unique_args.add(kmi_tuple)