diff --git a/aw_notify/main.py b/aw_notify/main.py index 99b61c4..5978daf 100644 --- a/aw_notify/main.py +++ b/aw_notify/main.py @@ -336,7 +336,7 @@ def decode_unicode_escapes(s: str) -> str: Decodes any Unicode escape sequences present in the input string and returns the decoded result. """ - # see https://github.com/ActivityWatch/aw-notify/pull/6#issue-2607074123 + # see https://github.com/ActivityWatch/aw-notify/pull/6 # assert "工作" == decode_unicode_escapes("\\u5de5\\u4f5c") return s.encode('utf-8').decode('unicode_escape')