Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 8fa029b

Browse files
NickCaogithub-actions[bot]
authored andcommitted
treewide: never ellipsis or wrap name column
(cherry picked from commit 3649342)
1 parent 6a4710b commit 8fa029b

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

packages/jumpstarter-cli-driver/jumpstarter_cli_driver/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def list_drivers():
1717
pad_edge=None,
1818
)
1919

20-
table.add_column("NAME")
20+
table.add_column("NAME", no_wrap=True)
2121
table.add_column("TYPE")
2222

2323
for driver in drivers:

packages/jumpstarter-kubernetes/jumpstarter_kubernetes/clients.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def from_dict(dict: dict):
5555

5656
@classmethod
5757
def rich_add_columns(cls, table):
58-
table.add_column("NAME")
58+
table.add_column("NAME", no_wrap=True)
5959
table.add_column("ENDPOINT")
6060
# table.add_column("AGE")
6161

packages/jumpstarter-kubernetes/jumpstarter_kubernetes/exporters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ def from_dict(dict: dict):
6161
@classmethod
6262
def rich_add_columns(cls, table, devices: bool = False):
6363
if devices:
64-
table.add_column("NAME")
64+
table.add_column("NAME", no_wrap=True)
6565
table.add_column("ENDPOINT")
6666
table.add_column("AGE")
6767
table.add_column("LABELS")
6868
table.add_column("UUID")
6969
else:
70-
table.add_column("NAME")
70+
table.add_column("NAME", no_wrap=True)
7171
table.add_column("ENDPOINT")
7272
table.add_column("DEVICES")
7373
table.add_column("AGE")

packages/jumpstarter-kubernetes/jumpstarter_kubernetes/leases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def from_dict(dict: dict):
7979

8080
@classmethod
8181
def rich_add_columns(cls, table):
82-
table.add_column("NAME")
82+
table.add_column("NAME", no_wrap=True)
8383
table.add_column("CLIENT")
8484
table.add_column("SELECTOR")
8585
table.add_column("EXPORTER")

packages/jumpstarter/jumpstarter/client/grpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def from_protobuf(cls, data: client_pb2.Lease) -> Lease:
157157

158158
@classmethod
159159
def rich_add_columns(cls, table):
160-
table.add_column("NAME")
160+
table.add_column("NAME", no_wrap=True)
161161
table.add_column("SELECTOR")
162162
table.add_column("DURATION")
163163
table.add_column("CLIENT")

0 commit comments

Comments
 (0)