mirror of
https://github.com/onyx-and-iris/obsws-cli.git
synced 2026-04-18 06:53:38 +00:00
print list as rich table
swap out typer.echo for rich consoles add filter status command add util function minor bump
This commit is contained in:
6
obsws_cli/util.py
Normal file
6
obsws_cli/util.py
Normal file
@@ -0,0 +1,6 @@
|
||||
"""module contains utility functions for the obsws_cli package."""
|
||||
|
||||
|
||||
def snakecase_to_titlecase(snake_str):
|
||||
"""Convert a snake_case string to a title case string."""
|
||||
return snake_str.replace('_', ' ').title()
|
||||
Reference in New Issue
Block a user