File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,9 +47,6 @@ It pretends to be the [Just Dance Controller app](https://play.google.com/store/
4747```
4848pip3 install -r requirements.txt
4949```
50-
51- #### Extra step for Windows users
52- Please make [ this change] ( ../../issues/3#issuecomment-1101087415 ) . It's only a temporary fix, and will be patched in future versions.
5350
5451#### Extra steps for Linux users
5552<details >
Original file line number Diff line number Diff line change 11import asyncio
22import json
33import logging
4+ import platform
45import re
56import socket
67import time
@@ -81,7 +82,10 @@ async def get_joycon_list(app):
8182 break
8283
8384 color = '#%02x%02x%02x' % joycon .color_body
84- joycon .__del__ ()
85+
86+ # Temporary fix for Windows
87+ if platform .system () != 'Windows' :
88+ joycon .__del__ ()
8589
8690 info = {
8791 'vendor_id' : dev ['vendor_id' ],
You can’t perform that action at this time.
0 commit comments