From 6f72526b3c74c0e64075563be2ddf7f9708ad12c Mon Sep 17 00:00:00 2001 From: Michael McGeagh Date: Thu, 3 Dec 2020 15:21:36 +0000 Subject: MLBEDSW-3685 Fix dangerous default value usage Pylint W0102: When a mutable value as list or dictionary is detected in a default value for an argument. Replace detected instances with None, and upon checking for None, sets the default accordingly Signed-off-by: Michael McGeagh Change-Id: I4eb73d07d01d4cdefa586eb71b9c76746eee3b11 --- ethosu/vela/test/testutil.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ethosu/vela/test/testutil.py') diff --git a/ethosu/vela/test/testutil.py b/ethosu/vela/test/testutil.py index 4b2938b9..9ba39bc5 100644 --- a/ethosu/vela/test/testutil.py +++ b/ethosu/vela/test/testutil.py @@ -107,11 +107,12 @@ def create_op_with_quant_tensors( return op -def create_op(op_type, inputs, output, attrs=dict()): +def create_op(op_type, inputs, output, attrs=None): op = Operation(op_type, output.name + "_op") op.inputs = inputs op.outputs = [output] - op.attrs = attrs + if attrs is not None: + op.attrs = attrs return op -- cgit v1.2.1