Is there any way to suppress the "unreachable code" warning? It looks like cmp determines reachability based only on the function's type annotations, without considering that Python is dynamically typed and some code paths may still be valid at runtime.
Is there any way to suppress the "unreachable code" warning? It looks like cmp determines reachability based only on the function's type annotations, without considering that Python is dynamically typed and some code paths may still be valid at runtime.