From c741b372e1b3f146275056f9712b4c0bb62f6571 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Wed, 29 Jun 2022 09:41:15 -0400 Subject: [PATCH] settings: remove unused class variables --- lib/logitech_receiver/settings.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/logitech_receiver/settings.py b/lib/logitech_receiver/settings.py index 82c01e00..43421e36 100644 --- a/lib/logitech_receiver/settings.py +++ b/lib/logitech_receiver/settings.py @@ -974,8 +974,6 @@ class ChoicesValidator(Validator): :param byte_count: the size of the derived byte sequence. If None, it will be calculated from the choices.""" kind = KIND.choice - choices_universe = None # the possible choices, or an empty sequence for anything - choices_extra = None # an extra choice, so as not to require extending a large NamedInts def __init__(self, choices=None, byte_count=None, read_skip_byte_count=0, write_prefix_bytes=b''): assert choices is not None @@ -1035,8 +1033,6 @@ class ChoicesValidator(Validator): class ChoicesMapValidator(ChoicesValidator): kind = KIND.map_choice - keys_universe = None # the possible keys, or an empty sequence for anything - choices_universe = None # the possible choices, or an empty sequence for anything def __init__( self,