Skip to content

Commit

Permalink
[pre-commit.ci lite] apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] authored Nov 22, 2024
1 parent bc7b6d4 commit f3eca96
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kolibri/core/kolibri_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ def plugin_data(self):
# This should maintain consistency with our naming, as all namespaces
# are either 'kolibri:core' or 'kolibri:plugin_module_path'
# neither of which can contain dashes.
url_data["urls"] = {key.replace("-", "_"): value for key, value in url_data["urls"]}
url_data["urls"] = {
key.replace("-", "_"): value for key, value in url_data["urls"]
}

zip_content_origin, zip_content_port = get_zip_content_config()

Expand Down

0 comments on commit f3eca96

Please sign in to comment.