From 432bb83bc214a4b3212471a69ace15090cbb7d37 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 19 Dec 2023 23:48:57 -0800 Subject: [PATCH] Allow many Spec fields The whole point of Spec is to be a simple, inert, immutable collection of largely independent program elements easily at hand. It's being used here like a namespace, not a pile of shared mutable state for which a field limit of 7 would make more sense. Let Spec grow. --- spec.py | 1 + 1 file changed, 1 insertion(+) diff --git a/spec.py b/spec.py index 50746d7..c7ace56 100644 --- a/spec.py +++ b/spec.py @@ -15,6 +15,7 @@ from fetch import Fetcher from texify import Texifier +# pylint: disable=too-many-instance-attributes @dataclass(frozen=True) class Spec: url: str -- 2.44.1