We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Moving a mention from one cluster to another cluster is not supported yet (but it seems @dan-zeman would like to use it). We should:
NotImplementedError
self._cluster._mentions.remove(self)
cluster._mentions
sort()
if self._bridging and new_cluster in self._bridging.targets: raise ValueError("Bridge cannot self-reference the same cluster")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Moving a mention from one cluster to another cluster is not supported yet (but it seems @dan-zeman would like to use it). We should:
NotImplementedError
in the setterself._cluster._mentions.remove(self)
cluster._mentions
should be always sorted (and if yes, add asort()
)if self._bridging and new_cluster in self._bridging.targets: raise ValueError("Bridge cannot self-reference the same cluster")
The text was updated successfully, but these errors were encountered: