Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 13, 2025
1 parent 7e5309a commit 8529f53
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion profile_manager/profiles/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,11 @@ def get_profile_plugin_information(
name=manager_metadata["name"],
folder_name=plugin_slug_name,
official_repository=True, # For now we only support official repository
plugin_id=int(manager_metadata["plugin_id"]) if manager_metadata["plugin_id"] else None,
plugin_id=(
int(manager_metadata["plugin_id"])
if manager_metadata["plugin_id"]
else None
),
version=define_plugin_version_from_metadata(
manager_metadata=manager_metadata,
plugin_metadata=plugin_metadata,
Expand Down

0 comments on commit 8529f53

Please sign in to comment.