14 lines
221 B
Python
Executable file
14 lines
221 B
Python
Executable file
"""Main run file for J.A.R.V.I.S."""
|
|
|
|
import nest_asyncio
|
|
|
|
nest_asyncio.apply()
|
|
|
|
import asyncio # noqa: E402
|
|
|
|
from jarvis import run # noqa: E402
|
|
|
|
nest_asyncio.apply()
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(run())
|