#sphinx #numpydoc folks, I have a question.
When specifying a parameter
```
"""
...
levels : (float, float)
description.
...
“””
```
sphinx is givingm e warnings:
WARNING: py:class reference target not found (float [ref.class]
WARNING: py:class reference target not found float) [ref.class]
I know I can get around this by specifying the type as
leves : tuple(float, float)
But not having to specify tuple makes it much nicer looking (and the parenthesis imply it).
suggestions on how to work around this?

