From f83d6246cb7cb355574b794b63e302105e06fcc3 Mon Sep 17 00:00:00 2001 From: Clint Brown Date: Tue, 24 Apr 2018 17:33:47 +1000 Subject: [PATCH] Fix lint --- bin/cli-users | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/cli-users b/bin/cli-users index 18da341bb..a01980a20 100755 --- a/bin/cli-users +++ b/bin/cli-users @@ -290,7 +290,12 @@ async function createUser() { const ctx = Context.forSystem(); // Create the user. - const user = await UsersService.createLocalUser(ctx, email, password, username); + const user = await UsersService.createLocalUser( + ctx, + email, + password, + username + ); // Set the role. await UsersService.setRole(user.id, role);