Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
main_loop.run()
Connection = override(Connection)
__all__.append('Connection')
class Con(i3ipc.Con):
def __getattr__(self, name):
if name == 'nodes':
return self.get_nodes()
try:
return self.get_property(name)
except TypeError:
raise AttributeError
Con = override(Con)
__all__.append('Con')