mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-22 09:24:21 +01:00
fix pep 8
This commit is contained in:
parent
f3fabe502e
commit
14afde33b5
@ -1079,7 +1079,7 @@ class LdapCherry(object):
|
|||||||
)
|
)
|
||||||
tmp = self._get_roles(user)
|
tmp = self._get_roles(user)
|
||||||
user_roles = tmp['roles']
|
user_roles = tmp['roles']
|
||||||
user_lonely_groups = tmp['unusedgroups']
|
standalone_groups = tmp['unusedgroups']
|
||||||
roles_js = json.dumps(display_names, separators=(',', ':'))
|
roles_js = json.dumps(display_names, separators=(',', ':'))
|
||||||
key = self.attributes.get_key()
|
key = self.attributes.get_key()
|
||||||
form = self.temp['form.tmpl'].render(
|
form = self.temp['form.tmpl'].render(
|
||||||
@ -1100,7 +1100,7 @@ class LdapCherry(object):
|
|||||||
form=form,
|
form=form,
|
||||||
roles=roles,
|
roles=roles,
|
||||||
is_admin=is_admin,
|
is_admin=is_admin,
|
||||||
standalone_groups=self._escape(user_lonely_groups, 'lonely_groups'),
|
standalone_groups=self._escape(standalone_groups, 'lonely_groups'),
|
||||||
backends_display_names=self.backends_display_names,
|
backends_display_names=self.backends_display_names,
|
||||||
custom_js=self.custom_js,
|
custom_js=self.custom_js,
|
||||||
notifications=self._empty_notification(),
|
notifications=self._empty_notification(),
|
||||||
|
Loading…
Reference in New Issue
Block a user