Fix typo in README

This commit is contained in:
monosans 2022-08-13 14:44:15 +03:00 committed by Yury Selivanov
parent 3214cf685e
commit 73d7253bf0
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ Using uvloop
# Main entry-point.
...
if sys.version_info >= (3, 11)
if sys.version_info >= (3, 11):
with asyncio.Runner(loop_factory=uvloop.new_event_loop) as runner:
runner.run(main())
else: