mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-10-29 18:12:34 +00:00
13 lines
276 B
Python
13 lines
276 B
Python
import sys
|
|
|
|
from common import wait_for_reservation_status, get_session
|
|
|
|
def main():
|
|
session = get_session()
|
|
res_id = sys.argv[1]
|
|
session.EndReservation(res_id)
|
|
wait_for_reservation_status(session, res_id, ['Completed'])
|
|
|
|
if __name__ == '__main__':
|
|
main()
|