Skip to content

Commit 1ced80e

Browse files
committed
update
1 parent 4265717 commit 1ced80e

6 files changed

Lines changed: 8 additions & 208 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 199 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1+
See https://github.com/trustcrypto/python-onlykey

solo/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.26
1+
0.0.27

solo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# copied, modified, or distributed except according to those terms.
99
#
1010

11-
"""Python library for SoloKeys."""
11+
"""Python library for OnlyKey with Solo FIDO2"""
1212

1313
import pathlib
1414

solo/cli/__init__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def solo_cli():
3636

3737
@click.command()
3838
def version():
39-
"""Version of python-solo library and tool."""
39+
"""Version of library and tool."""
4040
print(solo.__version__)
4141

4242

@@ -110,8 +110,7 @@ def mergehex(
110110
"""Merges hex files, and patches in the attestation key.
111111
112112
\b
113-
If no attestation key is passed, uses default Solo Hacker one.
114-
Note that later hex files replace data of earlier ones, if they overlap.
113+
If no attestation key is passed, uses default.
115114
"""
116115
solo.operations.mergehex(
117116
input_hex_files,
@@ -131,7 +130,7 @@ def mergehex(
131130
"-a", "--all", is_flag=True, default=False, help="Show ST DFU devices too."
132131
)
133132
def ls(all):
134-
"""List Solos (in firmware or bootloader mode) and potential Solos in dfu mode."""
133+
"""List devices"""
135134

136135
solos = solo.client.find_all()
137136
print(":: Solos")

solo/cli/key.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# https://pocoo-click.readthedocs.io/en/latest/commands/#nested-handling-and-contexts
2929
@click.group()
3030
def key():
31-
"""Interact with Solo keys, see subcommands."""
31+
"""Interact with keys, see subcommands."""
3232
pass
3333

3434

@@ -345,7 +345,7 @@ def set_pin(serial):
345345
"--udp", is_flag=True, default=False, help="Communicate over UDP with software key"
346346
)
347347
def verify(pin, serial, udp):
348-
"""Verify key is valid Solo Secure or Solo Hacker."""
348+
"""Verify key is valid"""
349349

350350
# Any longer and this needs to go in a submodule
351351
print("Please press the button on your Solo key")

0 commit comments

Comments
 (0)