aboutsummaryrefslogtreecommitdiff
path: root/mmi2grpc/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'mmi2grpc/__init__.py')
-rw-r--r--mmi2grpc/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mmi2grpc/__init__.py b/mmi2grpc/__init__.py
index 76a162c..194676a 100644
--- a/mmi2grpc/__init__.py
+++ b/mmi2grpc/__init__.py
@@ -14,10 +14,12 @@ GRPC_PORT = 8999
class IUT:
- def __init__(self, args: List[str], port: int = GRPC_PORT):
+ def __init__(self, test: str, args: List[str],
+ port: int = GRPC_PORT, **kwargs):
self.a2dp_ = None
self.address_ = None
self.port = port
+ self.test = test
def __enter__(self):
with grpc.insecure_channel(f'localhost:{self.port}') as channel: