From 3c13630d8e4f25a6aed6093deb5090f764166851 Mon Sep 17 00:00:00 2001 From: timofey Date: Fri, 5 May 2023 16:16:03 +0000 Subject: [PATCH] default instrument implementation --- rainbowadn/instrument/instrumentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rainbowadn/instrument/instrumentation.py b/rainbowadn/instrument/instrumentation.py index 6bf3ba8..8297ec4 100644 --- a/rainbowadn/instrument/instrumentation.py +++ b/rainbowadn/instrument/instrumentation.py @@ -21,7 +21,7 @@ class Instrumentation: self.methodname = methodname def instrument(self, method, *args, **kwargs): - raise NotImplementedError + return method(*args, **kwargs) def __enter__(self: IType) -> IType: if hasattr(self, '_method') or hasattr(self, '_wrap'):