#Problem title
1 messages · Page 1 of 1 (latest)
you subclassed modal already, so add a select argument before so you can pass it in py def __init__(self, select, *args, **kwargs): self.select = select super().__init__(...)then call it by passing self in the modal callback
also that modal callback will break because you can't respond twice