Skip to content

Commit

Permalink
Update awx/main/utils/plugins.py
Browse files Browse the repository at this point in the history
Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]>
  • Loading branch information
djyasin and webknjaz authored Oct 16, 2024
1 parent ed9158f commit c669b39
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions awx/main/utils/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,4 @@ def compute_cloud_inventory_sources() -> dict[str, str]:
# Get the list of plugin names
plugins = discover_available_cloud_provider_plugin_names()

# Create a dictionary of plugin names
cloud_sources = {plugin: plugin for plugin in plugins}
cloud_sources['scm'] = 'Source Control Management'

return cloud_sources # Return the complete dictionary
return dict(zip(plugins, plugins), scm='Source Control Management')

0 comments on commit c669b39

Please sign in to comment.