blob: 089927d77bb644caf6f517c4d273c9fa4deda0d6 [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 hterm
import libdot # pylint: disable=wrong-import-order
def main(argv: list[str]) -> int:
"""The main func!"""
return libdot.format_tool.main(argv, basedir=hterm.DIR)
if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))