From d238371a5c940cedbdaee81d5943f784aec49b8a Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 28 Aug 2023 17:33:00 +0200 Subject: [PATCH] Whitelist pk and ip in pylint --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5d232aa..a4c827c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,11 @@ max-line-length = 88 load-plugins = [ "pylint_django", ] +good-names = [ + "pk", + "ip", +] + [tool.poetry] name = "network_inventory"