We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d2f14b commit 75ca0bbCopy full SHA for 75ca0bb
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
5
[project]
6
name = "ssri"
7
-version = "0.0.6"
+version = "0.0.7"
8
authors = [
9
{ name="Sebastian Gazey", email="[email protected]"},
10
]
ssri/ssri.py
@@ -452,8 +452,10 @@ async def notMainAnyMore():
452
else:
453
print(f"{printColour}{includeText} {numWarnings} errors encountered {CEND}")
454
455
-async def main():
456
- await(notMainAnyMore())
+def main():
+ asyncio.run(notMainAnyMore())
457
+
458
459
460
if __name__ == "__main__":
- asyncio.run(main())
461
+ main()
0 commit comments