-
Notifications
You must be signed in to change notification settings - Fork 851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Merge Error #2832
Fix Merge Error #2832
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
from augur.tasks.github.util.github_random_key_auth import GithubRandomKeyAuth | ||
from augur.application.db.models import Contributor | ||
from augur.tasks.github.facade_github.core import * | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [pylint] reported by reviewdog 🐶 |
||
from augur.application.db.lib import execute_sql, get_contributor_aliases_by_email, get_unresolved_commit_emails_by_name, get_contributors_by_full_name | ||
from augur.application.db.lib import execute_sql, get_contributor_aliases_by_email, get_unresolved_commit_emails_by_name, get_contributors_by_full_name, get_repo_by_repo_git | ||
from augur.tasks.git.util.facade_worker.facade_worker.facade00mainprogram import * | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [pylint] reported by reviewdog 🐶 |
||
|
||
|
||
|
@@ -195,10 +195,9 @@ def insert_facade_contributors(self, repo_git): | |
# Set platform id to 1 since this task is github specific | ||
platform_id = 1 | ||
|
||
engine = self.app.engine | ||
|
||
logger = logging.getLogger(insert_facade_contributors.__name__) | ||
repo_id = None | ||
repo = get_repo_by_repo_git(repo_git) | ||
repo_id = repo.repo_id | ||
|
||
# Get all of the commit data's emails and names from the commit table that do not appear | ||
# in the contributors table or the contributors_aliases table. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[pylint] reported by reviewdog 🐶
W0613: Unused argument 'full_collection' (unused-argument)