From 32b0013cc458d92acf4d7243486abcae4595257d Mon Sep 17 00:00:00 2001 From: Drew Date: Mon, 5 Nov 2018 11:45:52 -0500 Subject: [PATCH] style fix: remove () in return https://github.com/m-labs/artiq/pull/1188#discussion_r230596860 --- artiq/protocols/pc_rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/protocols/pc_rpc.py b/artiq/protocols/pc_rpc.py index 084538b81..ed1b0b96d 100644 --- a/artiq/protocols/pc_rpc.py +++ b/artiq/protocols/pc_rpc.py @@ -496,7 +496,7 @@ class Server(_AsyncioServer): # Fix issue #1186: PYON can't serialize type annotations. if any(argspec_dict.get("annotations", {})): argspec_dict["annotations"] = str(argspec_dict["annotations"]) - return (argspec_dict, inspect.getdoc(function)) + return argspec_dict, inspect.getdoc(function) async def _process_action(self, target, obj): if self._noparallel is not None: