From 93e8012e2afbe48aacda468a9cdb220c4266847b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sun, 24 Mar 2024 16:36:53 +0000 Subject: [PATCH] Disable UP032 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 7124bb36e0..66ea44eec0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -175,6 +175,7 @@ ignore = [ # This is unsafe for breezy, where several objects (e.g. VersionedFiles) # have a keys() method but no __iter__ "SIM118", # Use `key in dict` instead of `key in dict.keys()` + "UP032", # Use f-string instead of `format` call; f-strings break gettext ] # These are actually fine, but they make mypy more strict and then it fails. unfixable = ["ANN204"]