From 41f9886ac1af3dcfed83e24fa2ad066a56a4aea7 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 25 Dec 2025 01:53:07 +0900 Subject: [PATCH] Fix pep8 error Resolve the following error detected by flake8. ``` ./rally/common/opts.py:49:5: F824 `global _registered_paths` is unused: name is never assigned in scope ``` Change-Id: I7c1f9ac64be31985271719dbeee898e140145d47 Signed-off-by: Takashi Kajinami --- rally/common/opts.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rally/common/opts.py b/rally/common/opts.py index 53101a6b19..72eaeb71f5 100644 --- a/rally/common/opts.py +++ b/rally/common/opts.py @@ -46,7 +46,6 @@ _registered_paths = [] def register_options_from_path(path): - global _registered_paths if path not in _registered_paths: if ":" not in path: return