-
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 GitHub paginator and retrieve_dict_from_endpoint references #2878
Conversation
updating version
Signed-off-by: Andrew Brain <[email protected]>
Address release bugs
Signed-off-by: Andrew Brain <[email protected]>
Signed-off-by: Andrew Brain <[email protected]>
Raise exceptions on graphql errors
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]>
Augur 0.76.1 Release
Signed-off-by: Andrew Brain <[email protected]>
Signed-off-by: Andrew Brain <[email protected]>
augur/tasks/github/facade_github/contributor_interfaceable/contributor_interface.py
Outdated
Show resolved
Hide resolved
import logging | ||
|
||
|
||
from typing import List, Optional, Union, Generator, Tuple | ||
from typing import Optional | ||
from urllib.parse import urlencode, urlparse, parse_qs, urlunparse |
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 🐶
W0611: Unused urlencode imported from urllib.parse (unused-import)
import logging | ||
|
||
|
||
from typing import List, Optional, Union, Generator, Tuple | ||
from typing import Optional | ||
from urllib.parse import urlencode, urlparse, parse_qs, urlunparse |
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 🐶
W0611: Unused urlparse imported from urllib.parse (unused-import)
import logging | ||
|
||
|
||
from typing import List, Optional, Union, Generator, Tuple | ||
from typing import Optional | ||
from urllib.parse import urlencode, urlparse, parse_qs, urlunparse |
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 🐶
W0611: Unused parse_qs imported from urllib.parse (unused-import)
import logging | ||
|
||
|
||
from typing import List, Optional, Union, Generator, Tuple | ||
from typing import Optional | ||
from urllib.parse import urlencode, urlparse, parse_qs, urlunparse |
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 🐶
W0611: Unused urlunparse imported from urllib.parse (unused-import)
Signed-off-by: Andrew Brain <[email protected]>
Signed-off-by: Andrew Brain <[email protected]>
@@ -3,7 +3,8 @@ | |||
import time | |||
import sqlalchemy as s | |||
from augur.application.db.models import * | |||
from augur.tasks.github.util.github_paginator import hit_api, process_dict_response, retrieve_dict_from_endpoint | |||
from augur.tasks.github.util.github_paginator import hit_api, process_dict_response | |||
from augur.tasks.github.util.github_data_access import GithubDataAccess, UrlNotFoundException |
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 🐶
W0611: Unused UrlNotFoundException imported from augur.tasks.github.util.github_data_access (unused-import)
@@ -3,7 +3,8 @@ | |||
import time | |||
import sqlalchemy as s | |||
from augur.application.db.models import * | |||
from augur.tasks.github.util.github_paginator import hit_api, process_dict_response, retrieve_dict_from_endpoint | |||
from augur.tasks.github.util.github_paginator import hit_api, process_dict_response | |||
from augur.tasks.github.util.github_data_access import GithubDataAccess, UrlNotFoundException | |||
# Debugger | |||
import traceback |
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 🐶
W0611: Unused import traceback (unused-import)
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.
LGTM for testing
Description
Signed commits