Skip to content

Commit

Permalink
fixes imports
Browse files Browse the repository at this point in the history
  • Loading branch information
markjschreiber committed Aug 19, 2024
1 parent 74aef73 commit 40ae875
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion omics/cli/run_analyzer/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from timeline import plot_timeline
from . import timeline
4 changes: 2 additions & 2 deletions omics/cli/run_analyzer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
import dateutil
import dateutil.utils
import docopt
import timeline # type: ignore
from bokeh.plotting import output_file
from timeline import plot_timeline # type: ignore

exename = os.path.basename(sys.argv[0])
OMICS_LOG_GROUP = "/aws/omics/WorkflowLog"
Expand Down Expand Up @@ -528,4 +528,4 @@ def tocsv(val):
)
title = f"arn: {run['arn']}, name: {run.get('name')}"

plot_timeline(resources, title=title, max_duration_hrs=run_duration_hrs)
timeline.plot_timeline(resources, title=title, max_duration_hrs=run_duration_hrs)

0 comments on commit 40ae875

Please sign in to comment.