Remove Unicode marker before strings

All strings are Unicode in Python 3. No need for u'€', just use '€'.
This commit is contained in:
Dimitri Papadopoulos
2022-10-27 09:45:07 +02:00
committed by Adrien Vergé
parent 5fbf44c203
commit 5b21a3d9ea
5 changed files with 16 additions and 16 deletions

View File

@@ -38,7 +38,7 @@ htmlhelp_basename = 'yamllintdoc'
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'yamllint', 'Linter for YAML files', [u'Adrien Vergé'], 1)
('index', 'yamllint', 'Linter for YAML files', ['Adrien Vergé'], 1)
]
# -- Build with sphinx automodule without needing to install third-party libs