Skip to content

Commit d8f50dc

Browse files
committed
🚑 Fix hid class imports
1 parent 8e2b4de commit d8f50dc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ltamp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .hidwrapper import HIDWrapper, HIDDevice, HIDBackendNotFound
1+
from .hidWrapper import HIDWrapper, HIDDevice, HIDBackendNotFound
22
from .ltAmpSync import LtAmp
33
from .ltAmpAsync import LtAmpAsync
44

ltamp/hidWrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import platform
22

3-
from .hiddevice import HIDDevice
3+
from .hidDevice import HIDDevice
44

55
class HIDBackendNotFound(Exception):
66
pass

ltamp/ltAmpBase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import os
66

7-
from .hidwrapper import HIDWrapper, HIDDevice, HIDBackendNotFound
7+
from .hidWrapper import HIDWrapper, HIDDevice, HIDBackendNotFound
88

99
# protobuf imports
1010
protocol_path = os.path.join(os.path.dirname(__file__), 'protocol')

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ltamp"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
description = "🎸 Cross-platform python interface for LT guitar/bass amplifiers"
55
readme = "README.md"
66
license = {text = "MIT"}

0 commit comments

Comments
 (0)