flake8: E128 continuation line under-indented for visual indent

This commit is contained in:
sshakndr
2023-10-23 14:35:21 +07:00
parent 226689611e
commit d8a7eeb1a0

View File

@ -82,10 +82,10 @@ descr_user_0 = [
USERS = [
User('uid-1', 'John Smith', 'smith@example.com',
'', None, {}, None,
None, [], descr_user_1, True),
'', None, {}, None,
None, [], descr_user_1, True),
User('uid-2', 'Mark Pottato', 'pottato@example.com',
'group-2', ['group-2', ''], {
'group-2', ['group-2', ''], {
'view': "",
'edit': ["group-2", ""],
'remove': ["group-2"]
@ -93,15 +93,15 @@ USERS = [
['group-2', ''],
True, [], descr_user_2, False),
User('uid-3', 'Hamish Mitchell', 'mitchell@example.com',
'group-3', ['group-2'], {
'group-3', ['group-2'], {
'view': ["group-3", "group-2"],
'edit': ["group-2"],
'remove': []
}, ['group-2'],
False, ["copy", "download", "print"], descr_user_3, False),
User('uid-0', None, None,
'', None, {}, [],
None, ["protect"], descr_user_0, False)
'', None, {}, [],
None, ["protect"], descr_user_0, False)
]
DEFAULT_USER = USERS[0]