Divide iree_utils and do module imports on function calls.

This commit is contained in:
Prashant Kumar
2022-06-22 11:13:17 +05:30
parent 08eda2ce35
commit e8aa105b2a
147 changed files with 4705 additions and 2662 deletions

15
.github/workflows/python-format.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: black-formatter
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10.5
- name: Install Black
run: pip install black
- name: Run formatter check on the entire project.
run: black --line-length 80 --check .