6 lines
113 B
Python
6 lines
113 B
Python
from . waiter import Waiter
|
|
|
|
class XMLWaiter(Waiter):
|
|
|
|
def run(self, payload):
|
|
Waiter.run(self, payload.xml)
|