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