Skip to content

Commit a890f4e

Browse files
committed
fix(ci): restore runtime helper import
1 parent 6fbc61f commit a890f4e

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

ohmo/gateway/runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
ToolExecutionStarted,
2525
)
2626
from openharness.prompts import build_runtime_system_prompt
27-
from openharness.ui.runtime import RuntimeBundle, build_runtime, close_runtime, start_runtime
27+
from openharness.ui.runtime import RuntimeBundle, _last_user_text, build_runtime, close_runtime, start_runtime
2828

2929
from ohmo.prompts import build_ohmo_system_prompt
3030
from ohmo.session_storage import OhmoSessionBackend

tests/test_tools/test_bash_tool.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
import asyncio
2-
from pathlib import Path
3-
4-
import pytest
5-
6-
from openharness.tools.bash_tool import BashTool, BashToolInput
72

83

94
class _FakeProcess:
@@ -26,4 +21,3 @@ def kill(self):
2621

2722
async def wait(self):
2823
return self.returncode
29-

0 commit comments

Comments
 (0)