Skip to content

Commit ecc7ba9

Browse files
committed
fix naming
1 parent d2a4b4d commit ecc7ba9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

ci/src/_utils.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,13 @@
4141

4242

4343
def plugin_reader() -> P:
44-
plugin_files = get_plugin_file_paths()
44+
plugin_file_paths = get_plugin_file_paths()
4545

4646
manifests = []
4747

48-
for plugin in plugin_files:
49-
with open(plugin, "r", encoding="utf-8") as f:
50-
manifest = json.load(f)
51-
manifests.append(manifest)
48+
for plugin_path in plugin_file_paths:
49+
with open(plugin_path, "r", encoding="utf-8") as f:
50+
manifests.append(json.load(f))
5251

5352
return manifests
5453

0 commit comments

Comments
 (0)