Skip to content

Commit

Permalink
Upgrade roboto module to 0.2.13 in px4_flight_review Action
Browse files Browse the repository at this point in the history
  • Loading branch information
YvesSchoenberg committed Apr 15, 2024
1 parent 9240fea commit e8d9fd9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion actions/px4_flight_review/requirements.runtime.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Python packages to install within the Docker image associated with this Action.
roboto
roboto==0.2.13
pyulog==1.0.2
mcap==1.1.1
jsonschema>=4.21.1
5 changes: 3 additions & 2 deletions actions/px4_flight_review/src/px4_flight_review/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from bokeh.embed import components
from bokeh.io import curdoc
from roboto.domain import actions
from roboto.env import RobotoEnvKey

def process_ulg_file(ulog_file_path, output_folder):
"""Process a single .ulg file to generate and combine Bokeh plots into an HTML report."""
Expand Down Expand Up @@ -92,7 +93,7 @@ def process_ulg_files(input_folder, output_folder):
type=pathlib.Path,
required=False,
help="Directory containing input files to process",
default=os.environ.get(actions.InvocationEnvVar.InputDir.value),
default=os.environ.get(RobotoEnvKey.InputDir.value),
)
parser.add_argument(
"-o",
Expand All @@ -101,7 +102,7 @@ def process_ulg_files(input_folder, output_folder):
type=pathlib.Path,
required=False,
help="Directory to which to write any output files to be uploaded",
default=os.environ.get(actions.InvocationEnvVar.OutputDir.value),
default=os.environ.get(RobotoEnvKey.OutputDir.value),
)

args = parser.parse_args()
Expand Down

0 comments on commit e8d9fd9

Please sign in to comment.