mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 17:13:35 +08:00
8 lines
213 B
Python
8 lines
213 B
Python
from pyga.requests import Q
|
|
|
|
def shutdown():
|
|
'''
|
|
Fire all stored GIF requests One by One.
|
|
You should call this if you set Config.queue_requests = True
|
|
'''
|
|
map(lambda func: func(), Q.REQ_ARRAY)
|