-
Notifications
You must be signed in to change notification settings - Fork 846
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
Remove empty files and move redundant folders to simplify project structure #2839
Conversation
Signed-off-by: Andrew Brain <[email protected]>
Signed-off-by: Andrew Brain <[email protected]>
Signed-off-by: Andrew Brain <[email protected]>
Signed-off-by: Andrew Brain <[email protected]>
Signed-off-by: Andrew Brain <[email protected]>
Signed-off-by: Andrew Brain <[email protected]>
from augur.tasks.github.events.tasks import * | ||
from augur.tasks.github.issues.tasks import * | ||
from augur.tasks.github.messages.tasks import * | ||
from augur.tasks.github.contributors import * |
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 🐶
C0114: Missing module docstring (missing-module-docstring)
@@ -15,7 +15,7 @@ | |||
from augur.tasks.github.pull_requests.files_model.tasks import process_pull_request_files |
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 🐶
C0413: Import "from augur.tasks.github.pull_requests.files_model.tasks import process_pull_request_files" should be placed at the top of the module (wrong-import-position)
@@ -15,7 +15,7 @@ | |||
from augur.tasks.github.pull_requests.files_model.tasks import process_pull_request_files | |||
from augur.tasks.github.pull_requests.commits_model.tasks import process_pull_request_commits |
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 🐶
C0413: Import "from augur.tasks.github.pull_requests.commits_model.tasks import process_pull_request_commits" should be placed at the top of the module (wrong-import-position)
@@ -15,7 +15,7 @@ | |||
from augur.tasks.github.pull_requests.files_model.tasks import process_pull_request_files | |||
from augur.tasks.github.pull_requests.commits_model.tasks import process_pull_request_commits | |||
from augur.tasks.git.dependency_tasks.tasks import process_ossf_dependency_metrics |
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 🐶
C0413: Import "from augur.tasks.git.dependency_tasks.tasks import process_ossf_dependency_metrics" should be placed at the top of the module (wrong-import-position)
augur/tasks/start_tasks.py
Outdated
@@ -15,7 +15,7 @@ | |||
from augur.tasks.github.pull_requests.files_model.tasks import process_pull_request_files | |||
from augur.tasks.github.pull_requests.commits_model.tasks import process_pull_request_commits | |||
from augur.tasks.git.dependency_tasks.tasks import process_ossf_dependency_metrics | |||
from augur.tasks.github.traffic.tasks import collect_github_repo_clones_data | |||
from augur.tasks.github.tasks import collect_github_repo_clones_data |
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 🐶
C0413: Import "from augur.tasks.github.tasks import collect_github_repo_clones_data" should be placed at the top of the module (wrong-import-position)
@@ -15,7 +15,7 @@ | |||
from augur.tasks.github.pull_requests.files_model.tasks import process_pull_request_files | |||
from augur.tasks.github.pull_requests.commits_model.tasks import process_pull_request_commits | |||
from augur.tasks.git.dependency_tasks.tasks import process_ossf_dependency_metrics | |||
from augur.tasks.github.traffic.tasks import collect_github_repo_clones_data | |||
from augur.tasks.github.tasks import collect_github_repo_clones_data | |||
from augur.tasks.gitlab.merge_request_task import collect_gitlab_merge_requests, collect_merge_request_metadata, collect_merge_request_commits, collect_merge_request_files, collect_merge_request_comments |
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 🐶
C0413: Import "from augur.tasks.gitlab.merge_request_task import collect_gitlab_merge_requests, collect_merge_request_metadata, collect_merge_request_commits, collect_merge_request_files, collect_merge_request_comments" should be placed at the top of the module (wrong-import-position)
@@ -15,7 +15,7 @@ | |||
from augur.tasks.github.pull_requests.files_model.tasks import process_pull_request_files | |||
from augur.tasks.github.pull_requests.commits_model.tasks import process_pull_request_commits | |||
from augur.tasks.git.dependency_tasks.tasks import process_ossf_dependency_metrics | |||
from augur.tasks.github.traffic.tasks import collect_github_repo_clones_data | |||
from augur.tasks.github.tasks import collect_github_repo_clones_data | |||
from augur.tasks.gitlab.merge_request_task import collect_gitlab_merge_requests, collect_merge_request_metadata, collect_merge_request_commits, collect_merge_request_files, collect_merge_request_comments | |||
from augur.tasks.gitlab.issues_task import collect_gitlab_issues, collect_gitlab_issue_comments |
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 🐶
C0413: Import "from augur.tasks.gitlab.issues_task import collect_gitlab_issues, collect_gitlab_issue_comments" should be placed at the top of the module (wrong-import-position)
@@ -15,7 +15,7 @@ | |||
from augur.tasks.github.pull_requests.files_model.tasks import process_pull_request_files | |||
from augur.tasks.github.pull_requests.commits_model.tasks import process_pull_request_commits | |||
from augur.tasks.git.dependency_tasks.tasks import process_ossf_dependency_metrics | |||
from augur.tasks.github.traffic.tasks import collect_github_repo_clones_data | |||
from augur.tasks.github.tasks import collect_github_repo_clones_data | |||
from augur.tasks.gitlab.merge_request_task import collect_gitlab_merge_requests, collect_merge_request_metadata, collect_merge_request_commits, collect_merge_request_files, collect_merge_request_comments | |||
from augur.tasks.gitlab.issues_task import collect_gitlab_issues, collect_gitlab_issue_comments | |||
from augur.tasks.gitlab.events_task import collect_gitlab_issue_events, collect_gitlab_merge_request_events |
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 🐶
C0413: Import "from augur.tasks.gitlab.events_task import collect_gitlab_issue_events, collect_gitlab_merge_request_events" should be placed at the top of the module (wrong-import-position)
Signed-off-by: Andrew Brain <[email protected]>
@@ -15,7 +15,7 @@ | |||
from augur.tasks.github.pull_requests.files_model.tasks import process_pull_request_files | |||
from augur.tasks.github.pull_requests.commits_model.tasks import process_pull_request_commits | |||
from augur.tasks.git.dependency_tasks.tasks import process_ossf_dependency_metrics | |||
from augur.tasks.github.traffic.tasks import collect_github_repo_clones_data | |||
from augur.tasks.github.traffic import collect_github_repo_clones_data |
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 🐶
C0413: Import "from augur.tasks.github.traffic import collect_github_repo_clones_data" should be placed at the top of the module (wrong-import-position)
Signed-off-by: Andrew Brain <[email protected]>
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.
Are you sure? :)
Description
augur/tasks/github/issues/tasks.py
and now it is ataugur/tasks/github/issues.py
.Note
Should be merged after: #2840
Signed commits