class Verdict: | |
def __init__(self, allowed: bool, highlights: list = []): | |
self.allowed = allowed | |
self.highlights = highlights | |
class Verdict: | |
def __init__(self, allowed: bool, highlights: list = []): | |
self.allowed = allowed | |
self.highlights = highlights | |