Add slots to dataclasses in default_config (#91410)

* add dataclass slots to default config items

* remove slots from sun mixing
This commit is contained in:
rlippmann 2023-04-14 14:22:39 -04:00 committed by GitHub
parent f65e06dc26
commit f5911bcad6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 32 additions and 32 deletions

View file

@ -47,7 +47,7 @@ def json_load(fp: IO[str]) -> JsonObjectType:
return json_loads_object(fp.read())
@dataclass
@dataclass(slots=True)
class LanguageIntents:
"""Loaded intents for a language."""