fixes AttributeError

release bump
This commit is contained in:
onyx-and-iris 2025-05-14 20:36:43 +01:00
parent e8b699cba6
commit 34fbc77182
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2025-present onyx-and-iris <code@onyxandiris.online> # SPDX-FileCopyrightText: 2025-present onyx-and-iris <code@onyxandiris.online>
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
__version__ = "0.10.3a0" __version__ = "0.10.3"

View File

@ -51,9 +51,9 @@ def toggle(ctx: typer.Context):
"""Toggle recording.""" """Toggle recording."""
resp = ctx.obj.toggle_record() resp = ctx.obj.toggle_record()
if resp.output_active: if resp.output_active:
type.echo('Recording started successfully.') typer.echo('Recording started successfully.')
else: else:
type.echo('Recording stopped successfully.') typer.echo('Recording stopped successfully.')
@app.command('status | ss') @app.command('status | ss')

View File

@ -23,7 +23,7 @@ classifiers = [
] ]
dependencies = [ dependencies = [
"typer>=0.15.2", "typer>=0.15.2",
"obsws-python>=1.7.1", "obsws-python>=1.7.2",
"pydantic-settings>=2.9.1", "pydantic-settings>=2.9.1",
] ]