We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cbb2c9 commit cef4dc8Copy full SHA for cef4dc8
1 file changed
synapse/cli/discover.py
@@ -23,9 +23,8 @@ def add_device(self, device):
23
24
def generate_layout(device_table):
25
device_count = len(device_table.devices)
26
- platform_info = "⌘C to stop" if sys.platform == "darwin" else "Ctrl-C to stop"
27
spinner_text = (
28
- f"Discovering Synapse devices... Found {device_count} so far ({platform_info})"
+ f"Discovering Synapse devices... Found {device_count} so far (Ctrl-C to stop)"
29
)
30
device_table.table.title.text = spinner_text
31
return device_table.table
0 commit comments