Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/python/bl_keymap_validate.py')
-rw-r--r--tests/python/bl_keymap_validate.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/python/bl_keymap_validate.py b/tests/python/bl_keymap_validate.py
index 1743893dc8a..b87eed0c0df 100644
--- a/tests/python/bl_keymap_validate.py
+++ b/tests/python/bl_keymap_validate.py
@@ -72,6 +72,7 @@ ALLOW_DUPLICATES = {
# -----------------------------------------------------------------------------
# Generic Utilities
+
@contextlib.contextmanager
def temp_fn_argument_extractor(
mod: types.ModuleType,
@@ -200,7 +201,7 @@ def keyconfig_config_as_filename_component(values: Sequence[Tuple[str, Any]]) ->
return "(" + quote(
".".join([
"-".join((str(key), str(val)))
- for key, val in values
+ for key, val in values
]),
# Needed so forward slashes aren't included in the resulting name.
safe="",