Skip to content

Commit

Permalink
Remove extra newline
Browse files Browse the repository at this point in the history
  • Loading branch information
cgokmen authored Dec 12, 2023
1 parent 4403b17 commit 5a22bab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions omnigibson/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,17 @@ def create_app():
# Enable Native Livestream extension
# Default App: Streaming Client from the Omniverse Launcher
enable_extension("omni.kit.livestream.native")
print(f"Now streaming on {hostname} via Omniverse Streaming Client\n")
print(f"Now streaming on {hostname} via Omniverse Streaming Client")
elif gm.REMOTE_STREAMING == "websocket":
# Enable WebSocket Livestream extension
# Default URL: http://localhost:8211/streaming/client/
enable_extension("omni.services.streamclient.websocket")
print(f"Now streaming on: http://{hostname}:8211/streaming/client\n")
print(f"Now streaming on: http://{hostname}:8211/streaming/client")
elif gm.REMOTE_STREAMING == "webrtc":
# Enable WebRTC Livestream extension
# Default URL: http://localhost:8211/streaming/webrtc-client/
enable_extension("omni.services.streamclient.webrtc")
print(f"Now streaming on: http://{hostname}:8211/streaming/webrtc-client?server={hostname}\n")
print(f"Now streaming on: http://{hostname}:8211/streaming/webrtc-client?server={hostname}")
else:
raise ValueError(f"Invalid REMOTE_STREAMING option {gm.REMOTE_STREAMING}. Must be one of None, native, websocket, webrtc.")

Expand Down

0 comments on commit 5a22bab

Please sign in to comment.