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
Get a value from the context by path (e.g., `pull_request.title`).
"""
# TODO use jsonpath_ng instead
path_parts=path.split(".")
value=self
try:
forpartinpath_parts:
ifisinstance(value, pydantic.BaseModel):
To resolve this TODO, you can start by replacing the existing code that uses jsonpath with the jsonpath_ng library. Make sure to update any necessary imports and modify the code to use the new library's syntax and functionality. Test the changes thoroughly to ensure they work as expected.
The text was updated successfully, but these errors were encountered:
TODO use jsonpath_ng instead
AutoPR/autopr/models/executable.py
Lines 39 to 49 in 1d818f4
To resolve this TODO, you can start by replacing the existing code that uses jsonpath with the jsonpath_ng library. Make sure to update any necessary imports and modify the code to use the new library's syntax and functionality. Test the changes thoroughly to ensure they work as expected.
The text was updated successfully, but these errors were encountered: