blob: 7124a774c2c30cda2681d585079450bc12179286 [file] [log] [blame]
#!/usr/bin/env python3
# Copyright 2020 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Lint our source files."""
import sys
import ssh_client
import libdot # pylint: disable=wrong-import-order
def main(argv):
"""The main func!"""
return libdot.lint.main(argv, basedir=ssh_client.DIR)
if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))