Skip to content

Commit c45391a

Browse files
Fix w291 trailing whitespace issue in RPC generator that causes flake8 tests to fail
1 parent c4803ac commit c45391a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

generator/transformers/common_producer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def extract_description(d):
8080

8181
@staticmethod
8282
def extract_values(param):
83-
p = OrderedDict()
83+
p = OrderedDict()
8484
if hasattr(param.param_type, 'min_size'):
8585
p['array_min_size'] = param.param_type.min_size
8686
if hasattr(param.param_type, 'max_size'):
@@ -93,7 +93,7 @@ def extract_values(param):
9393
elif hasattr(param.param_type, 'default_value'):
9494
if hasattr(param.param_type.default_value, 'name'):
9595
p['default_value'] = param.param_type.default_value.name
96-
else:
96+
else:
9797
p['default_value'] = param.param_type.default_value
9898
if hasattr(param.param_type, 'min_value'):
9999
p['num_min_value'] = param.param_type.min_value

0 commit comments

Comments
 (0)