diff --git a/pyproject.toml b/pyproject.toml index f74c963..fb7532a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath-dev" -version = "0.0.12" +version = "0.0.13" description = "UiPath Developer Console" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11" diff --git a/src/uipath/dev/__init__.py b/src/uipath/dev/__init__.py index 6f23f5f..0110315 100644 --- a/src/uipath/dev/__init__.py +++ b/src/uipath/dev/__init__.py @@ -187,7 +187,7 @@ async def action_cancel(self) -> None: """Cancel and return to new run view.""" await self.action_new_run() - async def action_execute_run(self, mode: ExecutionMode) -> None: + async def action_execute_run(self, mode: ExecutionMode = ExecutionMode.RUN) -> None: """Execute a new run based on NewRunPanel inputs.""" new_run_panel = self.query_one("#new-run-panel", NewRunPanel) entrypoint, input_data = new_run_panel.get_input_values() diff --git a/uv.lock b/uv.lock index f482aa7..e9f7d0b 100644 --- a/uv.lock +++ b/uv.lock @@ -1006,7 +1006,7 @@ wheels = [ [[package]] name = "uipath-dev" -version = "0.0.12" +version = "0.0.13" source = { editable = "." } dependencies = [ { name = "pyperclip" },