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
The reason is that this code: found_need["id"] not in env.needs_all_needs[ref_need][f"{option_name}_back"]
is using env.needs_all_needs[ref_need] and ref_need is referencing a not existing need.
Solution: Check if the link target exists in advance.
The text was updated successfully, but these errors were encountered:
If I set an extra-link via
needextend
like this:needextend.py
throws an error:The reason is that this code:
found_need["id"] not in env.needs_all_needs[ref_need][f"{option_name}_back"]
is using
env.needs_all_needs[ref_need]
andref_need
is referencing a not existing need.Solution: Check if the link target exists in advance.
The text was updated successfully, but these errors were encountered: