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
Specifying the spec feels a bit tedious and awkward, or perhaps I don't really understand how to do it without proper docs.
annotator = Annotator( {"x": (tuple, "range"), "y": (int, "point")}, fields=["description"], connector=conn, )
I think it'd be better to have:
annotator = PointAnnotator( fields=["description"], connector=conn, )
annotator = RangeAnnotator( fields=["description"], connector=conn, )
Or generally
annotator = Annotator( kind="range", fields=["description"], connector=conn, )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Specifying the spec feels a bit tedious and awkward, or perhaps I don't really understand how to do it without proper docs.
I think it'd be better to have:
Or generally
The text was updated successfully, but these errors were encountered: