소스 검색

Removed unused param in open.py docstring

Brian Landry 1 년 전
부모
커밋
0396cf60f9
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      nicegui/functions/open.py

+ 0 - 1
nicegui/functions/open.py

@@ -12,7 +12,6 @@ def open(target: Union[Callable[..., Any], str]) -> None:
     User events like button clicks provide such a socket.
 
     :param target: page function or string that is a an absolute URL or relative path from base URL
-    :param socket: optional WebSocket defining the target client
     """
     path = target if isinstance(target, str) else globals.page_routes[target]
     globals.get_client().open(path)