Skip to content

Commit

Permalink
Fix import sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
hmvp committed Apr 6, 2021
1 parent 8ac4a67 commit 7fe9bdc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion orchestrator/schedules/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
from orchestrator.schedules.resume_workflows import run_resume_workflows
from orchestrator.schedules.scheduling import SchedulingFunction
from orchestrator.schedules.task_vacuum import vacuum_tasks
from orchestrator.schedules.validate_subscriptions import validate_subscriptions
from orchestrator.schedules.validate_products import validate_products
from orchestrator.schedules.validate_subscriptions import validate_subscriptions

ALL_SCHEDULERS: List[SchedulingFunction] = [
run_resume_workflows,
Expand Down
1 change: 1 addition & 0 deletions orchestrator/services/translations.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import json
from pathlib import Path
from typing import Dict

from orchestrator.settings import app_settings


Expand Down
2 changes: 1 addition & 1 deletion orchestrator/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from pathlib import Path
import secrets
import string
from pathlib import Path
from typing import List, Optional

from opentelemetry.exporter import jaeger
Expand Down
4 changes: 1 addition & 3 deletions orchestrator/utils/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@
from typing import Dict, Optional, cast

import structlog

from orchestrator.types import JSON, ErrorDict, ErrorState

from nwastdlib.ex import show_ex

from orchestrator.types import JSON, ErrorDict, ErrorState

logger = structlog.get_logger(__name__)

Expand Down

0 comments on commit 7fe9bdc

Please sign in to comment.