From 20cce0e6a76698184f7dc2e4ca11ae91c20107f2 Mon Sep 17 00:00:00 2001 From: Claudio-Daniel Freire Date: Mon, 18 Jul 2011 19:29:39 +0200 Subject: [PATCH] Fix typing annotations in proxy get_attribute_list: flags must accept null --- src/nepi/util/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nepi/util/proxy.py b/src/nepi/util/proxy.py index c33f98a8..6c4db323 100644 --- a/src/nepi/util/proxy.py +++ b/src/nepi/util/proxy.py @@ -654,7 +654,7 @@ class TestbedControllerServer(BaseServer): return self._testbed.status(guid) @Marshalling.handles(GET_ATTRIBUTE_LIST) - @Marshalling.args(int, int, Marshalling.bool) + @Marshalling.args(int, Marshalling.nullint, Marshalling.bool) @Marshalling.retval( Marshalling.pickled_data ) def get_attribute_list(self, guid, filter_flags = None, exclude = False): return self._testbed.get_attribute_list(guid, filter_flags, exclude) -- 2.47.0