Hannes Drescher

Results 4 comments of Hannes Drescher

I had a similar issue and after a lot of debugging finally got it working by clearing the stdout and stderr streams ```js start().then((server) => { // Clearing the buffer...

This should also fix the problems described in #38

What I have found out while debugging: When the `node.ancestors(recurs=False)` function is called in diagrams.py lines 213-219 ```python # inheritance link for par_node in node.ancestors(recurs=False): try: par_obj = self.object_from_node(par_node) self.add_relationship(obj,...

As I really do not know what is going on there in astroid, my quick and dirty solution would be to extract the correct base classes via their name: ```python...