KOSASIH / cosmic-pi-network

Attribute defined outside __init__ PYL-W0201
Anti-pattern
Minor
3 months ago3 months old
Attribute 'entities' defined outside __init__
 6
 7    def process_input(self, input_data):
 8        doc = self.nlp(input_data)
 9        self.entities = [ent.text for ent in doc.ents]10
11    def get_entities(self):
12        return self.entities