Remove unused argument

main
Bob Mottram 2022-09-08 19:11:48 +01:00
parent 0d688082fc
commit f728ae5271
1 changed files with 2 additions and 3 deletions

View File

@ -1981,8 +1981,7 @@ def _html_edit_profile_background(news_instance: bool, translate: {}) -> str:
return edit_profile_form return edit_profile_form
def _html_edit_profile_contact_info(nickname: str, def _html_edit_profile_contact_info(email_address: str,
email_address: str,
xmpp_address: str, xmpp_address: str,
matrix_address: str, matrix_address: str,
ssb_address: str, ssb_address: str,
@ -2478,7 +2477,7 @@ def html_edit_profile(server, translate: {},
# Contact information # Contact information
edit_profile_form += \ edit_profile_form += \
_html_edit_profile_contact_info(nickname, email_address, _html_edit_profile_contact_info(email_address,
xmpp_address, matrix_address, xmpp_address, matrix_address,
ssb_address, tox_address, ssb_address, tox_address,
briar_address, briar_address,