Every "check_all" call increases the memory used by my Python process. I expect, under normal usage, that's not a big deal, but if you're running a long-running process that uses python_ta multiple times, it can lead to unbounded growth in the memory used by the process.
To replicate, create a file to check. Then call "python_ta.check_all(fname)" several times. Check the memory usage of your Python process before the first call and after every subsequent call.