diff --git a/opendevin/runtime/process.py b/opendevin/runtime/process.py deleted file mode 100644 index aed4cbbd4c..0000000000 --- a/opendevin/runtime/process.py +++ /dev/null @@ -1,17 +0,0 @@ -from abc import ABC, abstractmethod - - -class Process(ABC): - @property - @abstractmethod - def pid(self) -> int: - pass - - @property - @abstractmethod - def command(self) -> str: - pass - - @abstractmethod - def read_logs(self) -> str: - pass