closer to working, but not right

This commit is contained in:
Kyle Brown
2020-10-21 15:26:51 -07:00
parent 56732930c5
commit 9972e8d23d
4 changed files with 188 additions and 139 deletions

View File

@@ -325,6 +325,7 @@ class KMKKeyboard:
self._hid_helper = BLEHID
else:
self._hid_helper = AbstractHID
self._hid_helper = self._hid_helper()
def _init_matrix(self):
self.matrix = MatrixScanner(
@@ -340,7 +341,7 @@ class KMKKeyboard:
self._extensions = [] + getattr(self, 'extensions', [])
try:
del self._extensions
del self.extensions
except Exception:
pass
finally: