I need to modify one line of an extremely nested python file in an imported library.
I needed to handle 1 error exception not covered by the library, so I made a class that inherits the error throwing class (and adds a try/except block).
Now I just need to swap my new class for the old one, but I'm sure its terrible pythonic form to actually modify an imported library source code.