Replace unnecessary lists with tuples.

This commit is contained in:
Roberto Rosario
2015-07-28 00:49:07 -04:00
parent 1e746c700a
commit 54f3cef7ba
14 changed files with 93 additions and 88 deletions

View File

@@ -19,14 +19,14 @@ class AuthenticationApp(MayanAppConfig):
super(AuthenticationApp, self).ready()
menu_secondary.bind_links(
links=[
links=(
link_password_change, link_logout
],
sources=[
),
sources=(
'common:current_user_details', 'common:current_user_edit',
'common:current_user_locale_profile_details',
'common:current_user_locale_profile_edit',
'authentication:password_change_view',
'common:setup_list', 'common:tools_list'
]
)
)