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

# 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 # pylint: disable=unused-import
import AsuDrvIntfSetup

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