Skip to content

Commit 75ca0bb

Browse files
committed
I hate pip
1 parent 9d2f14b commit 75ca0bb

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "ssri"
7-
version = "0.0.6"
7+
version = "0.0.7"
88
authors = [
99
{ name="Sebastian Gazey", email="[email protected]"},
1010
]

ssri/ssri.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -452,8 +452,10 @@ async def notMainAnyMore():
452452
else:
453453
print(f"{printColour}{includeText} {numWarnings} errors encountered {CEND}")
454454

455-
async def main():
456-
await(notMainAnyMore())
455+
def main():
456+
asyncio.run(notMainAnyMore())
457+
458+
457459

458460
if __name__ == "__main__":
459-
asyncio.run(main())
461+
main()

0 commit comments

Comments
 (0)