From: Scott Worley Date: Wed, 20 Dec 2023 07:48:57 +0000 (-0800) Subject: Allow many Spec fields X-Git-Url: http://git.scottworley.com/paperdoorknob/commitdiff_plain/432bb83bc214a4b3212471a69ace15090cbb7d37?hp=91fe9916122adaee2cf1695040f906d709e1aa1c 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. --- 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