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
I checked the documentation and found no answer to my problem
I checked the existing issues and made sure there are no similar bug reports
Category
Bug in Agentverse
Expected Behavior
When running the following line of code: rsp = f"{msg.username} has contributed {len(repos)} external repositories:\n{"\n".join(repos)}"
it should work as it does in Python.
Observed Behavior
The web IDE on the Agentverse website logs an info-level warning "unexpected character after line continuation character".
The warning went away by breaking down the one-liner into two parts, allowing me to deploy the function.
repoStr="\n".join(repos)
rsp=f"{msg.username} has contributed {len(repos)} external repositories:\n{repoStr}"```info-level### To ReproduceRun`rsp = f"{msg.username} has contributed {len(repos)} external repositories:\n{"\n".join(repos)}"`ontheagentverseeditor.
### Environment Details (Optional)_Noresponse_### Failure Logs (Optional)_Noresponse_### Additional Information (Optional)_Noresponse_
The text was updated successfully, but these errors were encountered:
Prerequisites
Category
Bug in Agentverse
Expected Behavior
When running the following line of code:
rsp = f"{msg.username} has contributed {len(repos)} external repositories:\n{"\n".join(repos)}"
it should work as it does in Python.
Observed Behavior
The web IDE on the Agentverse website logs an info-level warning "unexpected character after line continuation character".
The warning went away by breaking down the one-liner into two parts, allowing me to deploy the function.
The text was updated successfully, but these errors were encountered: