Skip to content

Commit 921b3ba

Browse files
authored
Merge pull request #25 from UiPath/fix/samples
fix: logger adapter fileno
2 parents 9da238e + dfa5653 commit 921b3ba

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
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-mcp"
3-
version = "0.0.20"
3+
version = "0.0.21"
44
description = "UiPath MCP SDK"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath_mcp/_cli/_runtime/_logger.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import logging
2+
import sys
23

34

45
class LoggerAdapter:
@@ -13,3 +14,6 @@ def write(self, message):
1314

1415
def flush(self):
1516
pass
17+
18+
def fileno(self):
19+
return sys.stderr.fileno()

0 commit comments

Comments
 (0)