From d65e97c9a74765cb6ba4acb058a5712bc77c44f9 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Fri, 10 Feb 2023 12:31:42 +0100 Subject: [PATCH] neater --- grum/rpc/rpcclient.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/grum/rpc/rpcclient.py b/grum/rpc/rpcclient.py index e5f51d7..f9b428f 100644 --- a/grum/rpc/rpcclient.py +++ b/grum/rpc/rpcclient.py @@ -19,8 +19,7 @@ class RPCClient(xrc.ServerProxy): def __dir__(self): d1 = super().__dir__() d2 = self.utils.info().keys() - d2 = list(d2) - return d1 + d2 + return [*d1, *d2]