From c11a053222f4e6c6005740edabf893bcc90dfaca Mon Sep 17 00:00:00 2001 From: Tim Fischer Date: Wed, 3 Jan 2024 17:55:36 +0100 Subject: [PATCH] py: Ignore similar python code lint warning for now --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index f876ed24..7c738a47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,6 +52,7 @@ suggestion-mode = 'yes' [tool.pylint.disable] disable = [ "C0114", # Missing module docstring + "R0801" # Similar lines in 2 files, TODO: Remove this once FlooGen is integrated into FlooNoC ] [tool.black]