Ambiguous var name

This commit is contained in:
Alexandre Aubin 2021-10-05 12:50:25 +02:00
parent b0e8a58b24
commit de4b3825ab

View file

@ -677,7 +677,7 @@ def user_import(operation_logger, csvfile, update=False, delete=False):
def to_list(str_list):
L = str_list.split(",") if str_list else []
L = [l.strip() for l in L]
L = [element.strip() for element in L]
return L
existing_users = user_list()["users"]