diff options
author | Franck Cuny <franck@fcuny.net> | 2024-07-22 17:46:36 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-07-22 17:46:36 -0700 |
commit | d4b6d2b2053e335e5457e34c128ec8a1a156671d (patch) | |
tree | 95dc405071eed3c61142754249b9de9326f4285d /src/term | |
parent | delete github actions (diff) | |
download | world-d4b6d2b2053e335e5457e34c128ec8a1a156671d.tar.gz |
add lint as a target and reformat
Diffstat (limited to 'src/term')
-rw-r--r-- | src/term/link.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term/link.py b/src/term/link.py index cd75b16..d545d05 100644 --- a/src/term/link.py +++ b/src/term/link.py @@ -6,4 +6,4 @@ def link(text: str, url: str) -> str: For more information on the escape sequence, refer to: https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda#the-escape-sequence """ - return f""\x1b]8;;{url}\x07{text}\x1b]8;;\x07\u001b[0m"" + return f"\x1b]8;;{url}\x07{text}\x1b]8;;\x07\u001b[0m" |