fixed __dir__

This commit is contained in:
2023-02-10 10:09:22 +01:00
parent b14f6e68b4
commit b94294b579

View File

@ -17,7 +17,10 @@ class RPCClient(xrc.ServerProxy):
def __dir__(self): def __dir__(self):
return super().__dir__() + self.utils.info().keys() d1 = super().__dir__()
d2 = self.utils.info().keys()
d2 = list(d2)
return d1 + d2