mirror of
https://github.com/onyx-and-iris/obsws-cli.git
synced 2025-06-07 20:20:32 +01:00
swap out typer.echo for rich consoles add filter status command add util function minor bump
7 lines
217 B
Python
7 lines
217 B
Python
"""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()
|