From daaf79cdbcb02a80f84e62fb62ab7dfbc44a94ee Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Sat, 18 Jan 2025 17:27:15 +0100 Subject: [PATCH] fix: Typo in function parameter --- nextcloud2ntfy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextcloud2ntfy.py b/nextcloud2ntfy.py index 5265c53..85fd1d9 100644 --- a/nextcloud2ntfy.py +++ b/nextcloud2ntfy.py @@ -76,7 +76,7 @@ def push_to_ntfy( # Nextcloud apps have quite often internal names differing from the UI names. # - Eg. `spreed` is `Talk` # This is the place to track the differences -def translate_app_name(app=str) -> str: +def translate_app_name(app: str) -> str: if app == "spreed": return "Talk" elif app == "event_update_notification":