#!/usr/bin/env python3

import arista.platforms
from arista.utils.sonic_reboot import reboot


def main():
    # reboot the system
    reboot()


if __name__ == "__main__":
    main()
