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