Skip to content

Commit

Permalink
style: not sure how black missed this before
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Sep 30, 2022
1 parent fda4e5d commit 5b43b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dinghy/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Fix for https://github.com/nedbat/dinghy/issues/9
# Work around a known problem (https://github.com/python/cpython/issues/83413)
# that is fixed in 3.10.6 (https://github.com/python/cpython/pull/92904).
if sys.version_info < (3, 10, 6) and sys.platform.startswith('win'):
if sys.version_info < (3, 10, 6) and sys.platform.startswith("win"):
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

logger = click_log.basic_config("dinghy")
Expand Down

0 comments on commit 5b43b27

Please sign in to comment.