renamed a var to follow more the python defaults

This commit is contained in:
Hellow2 2023-01-31 13:28:27 +01:00
parent 911ae0c25a
commit dde8271707

View File

@ -90,7 +90,7 @@ class SourceAttribute:
"""
_source_dict: Dict[object, List[Source]]
def __new__(cls, **_):
def __new__(cls, **kwargs):
new = object.__new__(cls)
new._source_dict = {page_enum: list() for page_enum in SourcePages}
return new