From 9e4ad8905fad1963badf6e7ff46d299e2128058f Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 15 Apr 2022 23:48:02 -0700 Subject: [PATCH] Appease new pylint --- pinch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinch.py b/pinch.py index e3c7ca0..a66a03a 100644 --- a/pinch.py +++ b/pinch.py @@ -572,7 +572,7 @@ def read_config_section( _, all_fields = filter_dict(dict(conf.items()), set(['type'])) pin_fields, remaining_fields = filter_dict(all_fields, set(P._fields)) # Error suppression works around https://github.com/python/mypy/issues/9007 - pin_present = pin_fields != {} or P._fields == () + pin_present = pin_fields or P._fields == () pin = P(**pin_fields) if pin_present else None # type: ignore return SP(**remaining_fields), pin -- 2.44.1