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 29b1bee commit ba7ecabCopy full SHA for ba7ecab
pybricksdev/cli/__init__.py
@@ -322,5 +322,4 @@ def main():
322
if not args.tool:
323
parser.error(f'Missing name of tool: {"|".join(subparsers.choices.keys())}')
324
325
- loop = asyncio.get_event_loop()
326
- loop.run_until_complete(subparsers.choices[args.tool].tool.run(args))
+ asyncio.run(subparsers.choices[args.tool].tool.run(args))
0 commit comments