Remove obsolete unicode prefix

This commit is contained in:
Hugo Osvaldo Barrera 2021-10-30 19:40:02 +02:00 committed by Peter F. Patel-Schneider
parent 6c4e0333d4
commit 93c4ebe758
1 changed files with 1 additions and 1 deletions

View File

@ -807,7 +807,7 @@ def _save_config_rule_file(file_name=_file_path):
pass
def blockseq_rep(dumper, data):
return dumper.represent_sequence(u'tag:yaml.org,2002:seq', data, flow_style=True)
return dumper.represent_sequence('tag:yaml.org,2002:seq', data, flow_style=True)
_yaml_add_representer(inline_list, blockseq_rep)