summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2023-01-18 20:59:35 +0200
committerAarni Koskela <akx@iki.fi>2023-01-18 21:20:51 +0200
commit5f7580d40523ce8aa67f51a3eb941dc81faa47f2 (patch)
treefd92fba1f801935c8e21bbfa601c98e74890fa75 /pyproject.toml
parent65d9ae36ecb9d4a4691ffb9f21f3ff11e6ff5739 (diff)
downloadbabel-5f7580d40523ce8aa67f51a3eb941dc81faa47f2.tar.gz
Apply ruff UP025 (unicode literal prefix) fix
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index a7915af..10c1db8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,12 +7,14 @@ select = [
"F",
"I",
"SIM300",
+ "UP025",
]
ignore = [
"C901", # Complexity
"E501", # Line length
"E731", # Do not assign a lambda expression (we use them on purpose)
"E741", # Ambiguous variable name
+ "UP012", # "utf-8" is on purpose
]
extend-exclude = [
"tests/messages/data",