The error seen when decorating with `retry`: ``` libs/net/vmspec.py:41: error: Untyped decorator makes function "_lookup_iface_status" untyped [misc] ``` It seems there is a need to preserve the signature of the wrapped function as described [here](https://mypy.readthedocs.io/en/stable/generics.html#declaring-decorators).
The error seen when decorating with
retry:It seems there is a need to preserve the signature of the wrapped function as described here.