Open
Description
I'm getting a new handy error from mypy
:
src/ims/application/_main.py:74:2: error: cmp is deprecated, use eq and order [misc]
In order to make sure I'm using those correctly, I went to attrs.org
and looked for some documentation on these new options, but I see no mention of either of the eq
or order
options, except for some mentions of eq
in the section on hashing.
With a deprecation notice like this, a link to some documentation for how to fix your code would be very helpful.