We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 338b82d commit 2f8547fCopy full SHA for 2f8547f
src/uipath_mcp/_cli/_runtime/_context.py
@@ -28,6 +28,8 @@ def from_config(cls, config_path=None):
28
import os
29
30
path = config_path or "uipath.json"
31
+ print("PATH:", path)
32
+ print(os.path.exists(path))
33
if os.path.exists(path):
34
with open(path, "r") as f:
35
config = json.load(f)
0 commit comments