Compare commits

...

2 Commits

Author SHA1 Message Date
0c72a10fb7 bump obsws-python version 2025-07-01 09:30:04 +01:00
f882302d16 fixes missing argument 2025-07-01 09:29:56 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -168,5 +168,5 @@ def chapter(
ctx.obj['obsws'].create_record_chapter(chapter_name)
console.out.print(
f'Chapter {console.highlight(chapter_name or "unnamed")} created successfully.'
f'Chapter {console.highlight(ctx, chapter_name or "unnamed")} created successfully.'
)

View File

@ -21,7 +21,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["typer>=0.16.0", "obsws-python>=1.7.2", "python-dotenv>=1.1.0"]
dependencies = ["typer>=0.16.0", "obsws-python>=1.8.0", "python-dotenv>=1.1.0"]
[project.urls]