From f05b406160ab1f9bd0eb383c9e55e500196c9888 Mon Sep 17 00:00:00 2001 From: Vsevolod Shegolev Date: Tue, 3 Sep 2024 18:28:21 +0300 Subject: [PATCH] chore: disable E731 check (do not assign a `lambda` expression, use a `def`) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 5d695f5..4f614ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -117,6 +117,7 @@ ignore = [ "D200", # one-line docstring should fit on one line "D202", # no blank lines allowed after function docstring "D212", # start docstring on a first line + "E731", # do not assign a `lambda` expression, use a `def` ] pydocstyle.convention = "google"