You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in get.python.agent.handlers.ts, we pass the contextPath of the bot project using NodeJS process.cwd(). on Windows, this returns a path like C:\\Users\\ASUS\\my-new-bot and when this is used in the Python script it does not compile i.e. sys.path.append("C:\\Users\\ASUS\\my-new-bot"). ideally we can use Python's path.cwd to get a suitable format
The text was updated successfully, but these errors were encountered:
in
get.python.agent.handlers.ts
, we pass the contextPath of the bot project using NodeJS process.cwd(). on Windows, this returns a path likeC:\\Users\\ASUS\\my-new-bot
and when this is used in the Python script it does not compile i.e.sys.path.append("C:\\Users\\ASUS\\my-new-bot")
. ideally we can use Python's path.cwd to get a suitable formatThe text was updated successfully, but these errors were encountered: