Skip to content

Commit

Permalink
fix: main capgen package no longer has to be async
Browse files Browse the repository at this point in the history
  • Loading branch information
winstxnhdw committed Jul 3, 2024
1 parent 2b4d73f commit 462ba5a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions capgen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from argparse import ArgumentParser
from asyncio import run
from ctypes import CDLL
from os import name
from os.path import join
Expand Down Expand Up @@ -79,7 +78,7 @@ def resolve_cuda_libraries():
print('Unable to find Python cuBLAS binaries, falling back to system binaries..')


async def main():
def main():
"""
Summary
-------
Expand Down Expand Up @@ -108,4 +107,4 @@ async def main():


if __name__ == '__main__':
run(main())
main()

0 comments on commit 462ba5a

Please sign in to comment.