From 7896e520dcc793a6a152d66eb5b8527e241e1391 Mon Sep 17 00:00:00 2001 From: Manasa Venkatakrishnan <14958785+manasaV3@users.noreply.github.com> Date: Fri, 17 Mar 2023 14:52:07 -0700 Subject: [PATCH] Renaming collections module (#945) --- backend/api/app.py | 2 +- backend/api/{collections.py => plugin_collections.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename backend/api/{collections.py => plugin_collections.py} (100%) diff --git a/backend/api/app.py b/backend/api/app.py index 6538b7c82..e4e5d650a 100644 --- a/backend/api/app.py +++ b/backend/api/app.py @@ -6,7 +6,7 @@ from flask import Flask, Response, jsonify, render_template, request from flask_githubapp.core import GitHubApp -from api.collections import get_collections, get_collection +from api.plugin_collections import get_collections, get_collection from api.custom_wsgi import script_path_middleware from api.model import get_public_plugins, get_index, get_plugin, get_excluded_plugins, update_cache, \ move_artifact_to_s3, get_category_mapping, get_categories_mapping, get_manifest, update_activity_data, \ diff --git a/backend/api/collections.py b/backend/api/plugin_collections.py similarity index 100% rename from backend/api/collections.py rename to backend/api/plugin_collections.py