Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
jjw24 committed Dec 17, 2024
1 parent d2a4b4d commit ecc7ba9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions ci/src/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,13 @@


def plugin_reader() -> P:
plugin_files = get_plugin_file_paths()
plugin_file_paths = get_plugin_file_paths()

manifests = []

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

return manifests

Expand Down

0 comments on commit ecc7ba9

Please sign in to comment.