Skip to content

Commit

Permalink
align to precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
kimxworrall committed Sep 16, 2024
1 parent 0078ccd commit a6b2b99
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-pyright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
- name: Pyright
uses: jakebailey/pyright-action@v1
with:
version: "1.1.309"
version: "1.1.309"
2 changes: 1 addition & 1 deletion .github/workflows/code-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
pip install --upgrade pip
- name: Run code formatting checks with pre-commit
uses: pre-commit/[email protected]
uses: pre-commit/[email protected]
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ venv.bak/
dmypy.json

# Pyre type checker
.pyre/
.pyre/
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ repos:
types_or: [ python, pyi, jupyter ]
args: [ --fix, --exit-non-zero-on-fix ]
- id: ruff-format
types_or: [ python, pyi, jupyter ]
types_or: [ python, pyi, jupyter ]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ coverage-report-html:

# generate markdown coverage report
coverage-report-md:
coverage report --format=markdown
coverage report --format=markdown
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
# inconspiquous
A testing ground for quantum computing compilation ideas in xdsl


2 changes: 1 addition & 1 deletion inconspiquous/inconspiquous-opt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ import sys
from tools.inconspiquous_opt_main import main

if __name__ == "__main__":
sys.exit(main())
sys.exit(main())
3 changes: 2 additions & 1 deletion inconspiquous/tools/inconspiquous_opt_main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from xdsl.xdsl_opt_main import xDSLOptMain


class OptMain(xDSLOptMain):
def register_all_dialects(self):
super().register_all_dialects()
Expand All @@ -14,4 +15,4 @@ def main():


if "__main__" == __name__:
main()
main()
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ dev = [
"lit<16.0.0",
"filecheck==0.0.23",
"pre-commit==3.3.1",
]
]

0 comments on commit a6b2b99

Please sign in to comment.