Skip to content

Commit

Permalink
feat: aligned with lint
Browse files Browse the repository at this point in the history
  • Loading branch information
scientiststwin committed Dec 19, 2023
1 parent 464137a commit 6eacf8e
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions dags/github_api_helpers/comments.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging

from .smart_proxy import get


Expand Down
1 change: 1 addition & 0 deletions dags/github_api_helpers/commits.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging

from .smart_proxy import get


Expand Down
1 change: 1 addition & 0 deletions dags/github_api_helpers/issues.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging

from .smart_proxy import get


Expand Down
3 changes: 2 additions & 1 deletion dags/github_api_helpers/labels.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from .smart_proxy import get
import logging

from .smart_proxy import get


def fetch_repo_labels_page(owner: str, repo: str, page: int, per_page: int = 100):
"""
Expand Down
1 change: 1 addition & 0 deletions dags/github_api_helpers/orgs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging

from .smart_proxy import get


Expand Down
1 change: 1 addition & 0 deletions dags/github_api_helpers/pull_requests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging

from .smart_proxy import get


Expand Down
1 change: 1 addition & 0 deletions dags/github_api_helpers/repos.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging

from .smart_proxy import get


Expand Down
3 changes: 2 additions & 1 deletion dags/github_api_helpers/smart_proxy.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import logging
import requests
import random

import requests


def get(url: str, params=None):
"""
Expand Down

0 comments on commit 6eacf8e

Please sign in to comment.