From 035850061261cbf5c70b93ebfaf45cb97186593d Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Mon, 29 Jul 2024 13:59:46 +0100 Subject: [PATCH] Update docstring in app.py --- src/textual/app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/textual/app.py b/src/textual/app.py index e81044116f..f34397b429 100644 --- a/src/textual/app.py +++ b/src/textual/app.py @@ -3681,6 +3681,10 @@ def action_suspend_process(self) -> None: # (see the event handler on App._resume_signal) above. def open_url(self, url: str) -> None: - """Open a URL in the default web browser.""" + """Open a URL in the default web browser. + + Args: + url: The URL to open. + """ if self._driver is not None: self._driver.open_url(url)