blob: 57c38a03f6604cf3f427dc8e68ef64498ea60fb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
diff --git a/j2dx/__init__.py b/j2dx/__init__.py
index 7f9b621..200bf69 100644
--- a/j2dx/__init__.py
+++ b/j2dx/__init__.py
@@ -10,10 +10,8 @@ from eventlet import wsgi, listen
if platform.system() == 'Linux':
try:
from .nix.device import X360Device, DS4Device
- from .nix.setup import setup
except ImportError:
from j2dx.nix.device import X360Device, DS4Device
- from j2dx.nix.setup import setup
else:
try:
from .win.device import X360Device, DS4Device
|