Skip to content

Commit

Permalink
Fix wrong import v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
flok committed Aug 14, 2022
1 parent 9d8ab95 commit 330d117
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions pydualsense/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
from .enums import LedOptions, Brightness, PlayerID, PulseOptions, TriggerModes
from .event_system import Event
from .pydualsense import pydualsense, DSLight, DSState, DSTouchpad, DSTrigger, DSAudio
2 changes: 1 addition & 1 deletion pydualsense/pydualsense.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import hidapi
from .enums import (LedOptions, PlayerID, PulseOptions, TriggerModes, Brightness, ConnectionType) # type: ignore
import threading
from event_system import Event
from .event_system import Event
from copy import deepcopy


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='pydualsense',
version='0.6',
version='0.6.1',
description='use your DualSense (PS5) controller with python',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 330d117

Please sign in to comment.