ruff check --select I001 --fix applied to all python files that had this as only issue. Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
14 lines
313 B
Python
Executable file
14 lines
313 B
Python
Executable file
#!/usr/bin/env python3
|
|
# Copyright(c) 2022 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import asyncio
|
|
|
|
import cavstool
|
|
|
|
if __name__ == "__main__":
|
|
cavstool.args_parse()
|
|
try:
|
|
asyncio.run(cavstool.main())
|
|
except KeyboardInterrupt:
|
|
start_output = False
|