From b0bfe0eea78a05eaaf2857961165bafc28e0866c Mon Sep 17 00:00:00 2001 From: Corey Shields Date: Sat, 27 Jul 2019 12:41:20 -0400 Subject: [PATCH] Keep R0801 disabled R0801 trips on our norad argument handling in fetch_satellites.py and delete_satellite.py - but there is no way to disable it locally due to a bug. See https://github.com/PyCQA/pylint/issues/214 Signed-off-by: Corey Shields --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index dc744d1..14ed061 100644 --- a/.pylintrc +++ b/.pylintrc @@ -8,5 +8,5 @@ disable= C0412, E1101, R0401, - R0801, + R0801, # needs to remain disabled see https://github.com/PyCQA/pylint/issues/214 W0511,