-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upstream moved to using black for formatting months ago so e.g., four…
… space indents like is generally considered "pythonic".
- Loading branch information
1 parent
dae0939
commit dc353ba
Showing
6 changed files
with
1,229 additions
and
632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,9 @@ | |
|
||
"""aie compiler driver for MLIR tools""" | ||
|
||
__author__ = 'Stephen Neuendorffer' | ||
__email__ = '[email protected]' | ||
__author__ = "Stephen Neuendorffer" | ||
__email__ = "[email protected]" | ||
__versioninfo__ = (0, 1, 0) | ||
__version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev' | ||
__version__ = ".".join(str(v) for v in __versioninfo__) + "dev" | ||
|
||
__all__ = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.