Skip to content

Commit

Permalink
chore: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi committed Sep 27, 2024
1 parent 5330d5f commit e83df8b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion otterdog/webapp/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
from quart import current_app

from otterdog.config import OrganizationConfig
from otterdog.providers.github import GitHubProvider, GraphQLClient
from otterdog.providers.github import GitHubProvider
from otterdog.providers.github.graphql import GraphQLClient
from otterdog.providers.github.rest import RestApi
from otterdog.providers.github.stats import RequestStatistics
from otterdog.webapp.db.models import InstallationModel, TaskModel
Expand Down
2 changes: 1 addition & 1 deletion otterdog/webapp/tasks/fetch_policies.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from dataclasses import dataclass

from otterdog.providers.github import RestApi
from otterdog.providers.github.rest import RestApi
from otterdog.utils import print_error
from otterdog.webapp.db.models import TaskModel
from otterdog.webapp.db.service import (
Expand Down
2 changes: 1 addition & 1 deletion otterdog/webapp/tasks/validate_pull_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from otterdog.models import LivePatch, LivePatchType
from otterdog.operations.diff_operation import DiffStatus
from otterdog.operations.local_plan import LocalPlanOperation
from otterdog.providers.github import RestApi
from otterdog.providers.github.rest import RestApi
from otterdog.utils import IndentingPrinter, LogLevel
from otterdog.webapp.db.models import TaskModel
from otterdog.webapp.db.service import update_or_create_pull_request
Expand Down

0 comments on commit e83df8b

Please sign in to comment.