Skip to content

Commit d78895f

Browse files
committed
refactor(RemoveContext): remove context from init
It's not being used.
1 parent 51d7d80 commit d78895f

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-runtime"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
description = "Runtime abstractions and interfaces for building agents and automation scripts in the UiPath ecosystem"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath/runtime/base.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from typing_extensions import override
1616
from uipath.core import UiPathTraceManager
1717

18-
from uipath.runtime.context import UiPathRuntimeContext
1918
from uipath.runtime.events import (
2019
UiPathRuntimeEvent,
2120
)
@@ -62,10 +61,6 @@ class UiPathBaseRuntime(ABC):
6261
This allows using the class with 'async with' statements.
6362
"""
6463

65-
def __init__(self, context: Optional[UiPathRuntimeContext] = None):
66-
"""Initialize the runtime with the provided context."""
67-
self.context = context
68-
6964
async def get_schema(self) -> UiPathRuntimeSchema:
7065
"""Get schema for this runtime.
7166

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)