From 6d8ff8cc060b8cf3ac21c0ff39dcce3fa71e8409 Mon Sep 17 00:00:00 2001 From: Tobias Jachowski Date: Mon, 8 May 2023 10:25:31 +0200 Subject: [PATCH] flake8: B028 got renamed to B907. See https://github.com/PyCQA/flake8-bugbear/pull/333 --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 84d9a80cd..13e7fc933 100644 --- a/.flake8 +++ b/.flake8 @@ -29,6 +29,6 @@ ignore = F403,F405, # Don't complain about f"'{x}'" quotes. `!r` is not particularly readable, especially not for # cases where one would have to resort to f"{str(x)!r}" - B028, + B907, show-source = True