Compare commits

..

1 Commits

Author SHA1 Message Date
Serghei Mihai 236fdd8f49 wscalls: preview unflattened payload (#66916)
gitea/wcs/pipeline/head This commit looks good Details
2024-04-02 16:49:00 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ class RootDirectory(Directory):
# skip elements which are not part of payload
if 'post_data$element' not in param or param.endswith('value_python'):
continue
prefix, order, field = re.split(r'(\d)(?!\d)', param)
prefix, order, field = re.split(r'(\d)(?!\d)', param) # noqa pylint: disable=unused-variable
# skip elements that aren't ordered
if not order:
continue