-
-
Notifications
You must be signed in to change notification settings - Fork 91
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
Heya, after this commit: 29ec9c3,
mypy (and I imagine other static analysers) can no longer determine that the EntryPoint
has name
, value
and group
attributes.
Was there a reason for doing this:
def __init__(self, *, name, value, group):
vars(self).update(name=name, value=value, group=group)
rather than the conventional
def __init__(self, *, name, value, group):
self.name = name
self.value = value
self.group = group
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested