Skip to content

Commit

Permalink
https://github.com/solokeys/solo1-cli/pull/152
Browse files Browse the repository at this point in the history
  • Loading branch information
ghagl authored Jun 6, 2023
1 parent e717bdd commit ad03f9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solo/devices/solo_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

from fido2.client import Fido2Client
from fido2.ctap import CtapError
from fido2.ctap1 import CTAP1
from fido2.ctap2 import CTAP2
from fido2.ctap1 import Ctap1
from fido2.ctap2 import Ctap2
from fido2.hid import CTAPHID, CtapHidDevice
from intelhex import IntelHex

Expand Down Expand Up @@ -64,9 +64,9 @@ def find_device(self, dev=None, solo_serial=None):
dev = devices[0]
self.dev = dev

self.ctap1 = CTAP1(dev)
self.ctap1 = Ctap1(dev)
try:
self.ctap2 = CTAP2(dev)
self.ctap2 = Ctap2(dev)
except CtapError:
self.ctap2 = None

Expand Down

0 comments on commit ad03f9d

Please sign in to comment.