We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be helpful to add an hint as to the action that generated an overlap error with:
try: updated_input = path.execute(previous_tree) except AccessFailure: raise MaybeOverlappingActions( "When using chained actions, individual actions should not" " overlap with each other." f" Action attempted: {action}" ) from None
The text was updated successfully, but these errors were encountered:
Maybe something like this:
f"\n Previous action: {self.action[i-1]} for node: {ast.unparse(action.node)}" f"\n Action attempted: {action} for node: {ast.unparse(action.node)}"
Sorry, something went wrong.
No branches or pull requests
Would it be helpful to add an hint as to the action that generated an overlap error with:
The text was updated successfully, but these errors were encountered: