blob: e7f100dd92045aef5b908fdef9db705ea1be86a2 [file] [log] [blame]
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Wrapper to run pylint with the right sys.path."""
from __future__ import print_function
import sys
import ssh_client
import libdot
if __name__ == '__main__':
sys.exit(libdot.pylint.main(
sys.argv[1:], pythonpaths=(ssh_client.BIN_DIR,)))