Skip to content

Commit

Permalink
add return None
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouramie committed Mar 3, 2024
1 parent a27f4c5 commit e260e28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Options.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ class VerifyKeys(metaclass=FreezeValidKeys):
value: typing.Any

@classmethod
def verify_keys(cls, data: typing.Iterable[str]):
def verify_keys(cls, data: typing.Iterable[str]) -> None:
if cls.valid_keys:
data = set(data)
dataset = set(word.casefold() for word in data) if cls.valid_keys_casefold else set(data)
Expand Down

0 comments on commit e260e28

Please sign in to comment.