fix: Typo in function parameter
All checks were successful
Mirror to Forgejo / mirror-to-codeberg (push) Successful in 3s

This commit is contained in:
Jiří Štefka 2025-01-18 17:27:15 +01:00
parent f5757736d6
commit daaf79cdbc
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE

View file

@ -76,7 +76,7 @@ def push_to_ntfy(
# Nextcloud apps have quite often internal names differing from the UI names. # Nextcloud apps have quite often internal names differing from the UI names.
# - Eg. `spreed` is `Talk` # - Eg. `spreed` is `Talk`
# This is the place to track the differences # 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": if app == "spreed":
return "Talk" return "Talk"
elif app == "event_update_notification": elif app == "event_update_notification":