blargh2015

Results 2 comments of blargh2015

It works fine if we change the names around (i.e. change "ADriver" to "ZZZDriver"), which is what we've done internally, for the moment. Keep in mind in our real use,...

We've tinkered with replacing the code in get_network_driver from: ``` for name, obj in inspect.getmembers(module): if inspect.isclass(obj) and issubclass(obj, NetworkDriver): return obj ``` To: ``` for name, obj in inspect.getmembers(module,...