Skip to content

Commit

Permalink
Merge pull request #2200 from chaoss/random-fix
Browse files Browse the repository at this point in the history
Schema fix
  • Loading branch information
sgoggins authored Feb 28, 2023
2 parents 124f0de + bb2fb31 commit 4bc61fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions augur/application/db/models/augur_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
from augur.application.db.models import Repo, RepoGroup
from augur.application.db.session import DatabaseSession
from augur.application.db.models.base import Base
schema_6_revision = importlib.import_module('augur.application.schema.alembic.versions.6_add_repo_group_for_frontend_repos')

FRONTEND_REPO_GROUP_NAME = schema_6_revision.repo_group_name

FRONTEND_REPO_GROUP_NAME = "Frontend Repos"
logger = logging.getLogger(__name__)

def retrieve_org_repos(session, url: str) -> List[str]:
Expand Down

0 comments on commit 4bc61fa

Please sign in to comment.