#!/usr/bin/env python
# Copyright (c) 2017 Arista Networks, Inc.  All rights reserved.
# Arista Networks, Inc. Confidential and Proprietary.

from __future__ import absolute_import

# Pylint gets confused as the script and the library (with a .py exception)
# are named the same.
# pylint: disable-msg=W0406
# pylint: disable-msg=E1101
from AsuPStore import maybeConvertPstoreFileFormat
import AsuDrvIntfSetup

if __name__ == '__main__':
   AsuDrvIntfSetup.AsuArp().run()
