Fix wrong import v0.6.1

This commit is contained in:
Florian Kaiser
2022-08-14 16:20:15 +02:00
parent 9d8ab950de
commit 330d117340
3 changed files with 3 additions and 2 deletions

View File

@@ -1,2 +1,3 @@
from .enums import LedOptions, Brightness, PlayerID, PulseOptions, TriggerModes from .enums import LedOptions, Brightness, PlayerID, PulseOptions, TriggerModes
from .event_system import Event
from .pydualsense import pydualsense, DSLight, DSState, DSTouchpad, DSTrigger, DSAudio from .pydualsense import pydualsense, DSLight, DSState, DSTouchpad, DSTrigger, DSAudio

View File

@@ -8,7 +8,7 @@ if platform.startswith('Windows') and sys.version_info >= (3, 8):
import hidapi import hidapi
from .enums import (LedOptions, PlayerID, PulseOptions, TriggerModes, Brightness, ConnectionType) # type: ignore from .enums import (LedOptions, PlayerID, PulseOptions, TriggerModes, Brightness, ConnectionType) # type: ignore
import threading import threading
from event_system import Event from .event_system import Event
from copy import deepcopy from copy import deepcopy

View File

@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
setup( setup(
name='pydualsense', name='pydualsense',
version='0.6', version='0.6.1',
description='use your DualSense (PS5) controller with python', description='use your DualSense (PS5) controller with python',
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",