Skip to content

Commit

Permalink
Fix possible commands output (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skazza94 committed Nov 20, 2024
1 parent 0f3a83b commit e099f53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Kathara/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ def formatted_strings() -> str:
for item in strings.items():
commands_table.add_row(*item)

with console.capture() as _:
with console.capture() as capture:
console.print(commands_table)
return console.export_text()
return capture.get()

0 comments on commit e099f53

Please sign in to comment.