Avoid circular reference

(cherry picked from commit db30cd66d3)
This commit is contained in:
Gouvernathor 2023-11-16 01:38:39 +01:00 committed by LoafyLemon
parent ba9865ab70
commit 91019374f5
1 changed files with 4 additions and 1 deletions

View File

@ -180,7 +180,10 @@ init python:
self.wait = wait
self.label = label
self.func = func
self.queue = mailbox.letters
@property
def queue(self):
return mailbox.letters
def send(self):
self.mailed = True