Remove extraneous check
This commit is contained in:
parent
2502d9c7f4
commit
86fdf429c2
1 changed files with 1 additions and 3 deletions
|
@ -141,9 +141,7 @@ def process_request(uri):
|
|||
|
||||
output = None
|
||||
|
||||
if len(parts) < 2:
|
||||
output = None
|
||||
elif parts[1] == 'users' and len(parts) > 2:
|
||||
if parts[1] == 'users' and len(parts) > 2:
|
||||
if ',' in parts[2]:
|
||||
output = fetch_users(parts[2].split(','))
|
||||
else:
|
||||
|
|
Reference in a new issue