Skip to content

Commit

Permalink
fix(backends): import error for WESBackend
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Apr 11, 2024
1 parent 35af319 commit 205afe3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
8 changes: 0 additions & 8 deletions bento_wes/backends/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +0,0 @@
from . import backend_types
from ._wes_backend import WESBackend


__all__ = [
"backend_types",
"WESBackend",
]
5 changes: 3 additions & 2 deletions bento_wes/backends/cromwell_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
from pathlib import Path
from typing import TypeVar

from bento_wes.backends import WESBackend
from bento_wes.backends.backend_types import Command
from bento_wes.models import Run, RunWithDetails
from bento_wes.workflows import WorkflowType, WES_WORKFLOW_TYPE_WDL

from .backend_types import Command
from .wes_backend import WESBackend


__all__ = [
"CromwellLocalBackend"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion bento_wes/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from flask import current_app

from . import states
from .backends import WESBackend
from .backends.cromwell_local import CromwellLocalBackend
from .backends.wes_backend import WESBackend
from .celery import celery
from .db import Database, get_db
from .events import get_new_event_bus
Expand Down

0 comments on commit 205afe3

Please sign in to comment.