From 9a9ffd5594a5d27bbecf6160de2c33d44870f5bd Mon Sep 17 00:00:00 2001 From: Vasilii Chernov Date: Wed, 17 Feb 2016 17:20:25 +0100 Subject: Refactor pcipywrap to object --- xml/test_pywrap/test_prop2.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'xml/test_pywrap/test_prop2.py') diff --git a/xml/test_pywrap/test_prop2.py b/xml/test_pywrap/test_prop2.py index d7e10bc..d78dbea 100644 --- a/xml/test_pywrap/test_prop2.py +++ b/xml/test_pywrap/test_prop2.py @@ -1,8 +1,6 @@ -import pcipywrap - -def read_from_register(value): - return pcipywrap.get_property('/test/prop3') / 2 +def read_from_register(ctx, value): + return ctx.get_property('/test/prop3') / 2 -def write_to_register(value): - pcipywrap.set_property(value*2, '/test/prop3') +def write_to_register(ctx, value): + ctx.set_property(value*2, '/test/prop3') -- cgit v1.2.3