I plan to remove a class from quite lengthy python project (its functionality is duplicated by other code). However, I wish to check that nothing is broken without testing everything. The code is quite messy and not fully covered by tests.
Is it possible to use some static code analyzers to find the places where this class is referenced?
This has nothing to do with type check.