removed unused defer function

This commit is contained in:
iLLiCiTiT 2021-10-27 18:35:57 +02:00
parent 0f026551fe
commit ea30fb1b73

View file

@ -35,26 +35,6 @@ def application():
yield app yield app
def defer(delay, func):
"""Append artificial delay to `func`
This aids in keeping the GUI responsive, but complicates logic
when producing tests. To combat this, the environment variable ensures
that every operation is synchonous.
Arguments:
delay (float): Delay multiplier; default 1, 0 means no delay
func (callable): Any callable
"""
delay *= float(os.getenv("PYBLISH_DELAY", 1))
if delay > 0:
return QtCore.QTimer.singleShot(delay, func)
else:
return func()
class SharedObjects: class SharedObjects:
jobs = {} jobs = {}