From e3a21031d3fddc7fc5ad2efe8ec9b6f56d961a7e Mon Sep 17 00:00:00 2001 From: Fanis Tharropoulos Date: Fri, 23 Aug 2024 09:42:03 +0300 Subject: [PATCH] fix: ignore duplicate code in pylint - After updating, pylint returned errors for duplicate code on tests, so marking the flag as ignored resolves the issue --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 17aa886..8c52b18 100644 --- a/.pylintrc +++ b/.pylintrc @@ -485,7 +485,8 @@ disable=arguments-differ, use-implicit-booleaness-not-len, use-symbolic-message-instead, wrong-import-order, - wrong-import-position + wrong-import-position, + duplicate-code # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option