Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
amutake committed Jan 21, 2025
1 parent 581a145 commit f5931ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit_test/test_local_video_server_no_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def excepthook(args: Any) -> None:
app = actfw_core.Application()

# LocalVideoServer (for mjpeg streaming over http)
cmd = actfw_core.LocalVideoServer(quality=75)
app.register_task(cmd)
local_video_server = actfw_core.LocalVideoServer(quality=75)
app.register_task(local_video_server)

# Start application
th = threading.Thread(target=lambda: app.run())
Expand Down

0 comments on commit f5931ae

Please sign in to comment.