Skip to content

Commit e1d1857

Browse files
author
caberos
committed
Remove the comments lines
1 parent de317d4 commit e1d1857

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

SoftLayer/CLI/user/create.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"supersedes this template.")
3030
@click.option('--template', '-t', default=None,
3131
help="A json string describing https://softlayer.github.io/reference/datatypes/SoftLayer_User_Customer/")
32-
# @click.option('--api-key', '-a', default=False, is_flag=True, help="Create an API key for this user.")
3332
@environment.pass_env
3433
def cli(env, username, email, password, from_user, template):
3534
"""Creates a user Users.
@@ -81,10 +80,6 @@ def cli(env, username, email, password, from_user, template):
8180
raise exceptions.CLIAbort("Canceling creation!")
8281

8382
result = mgr.create_user(user_template, password)
84-
# new_api_key = None
85-
# if api_key11:
86-
# click.secho("Adding API key...", fg='green')
87-
# new_api_key = mgr.add_api_authentication_key(result['id'])
8883

8984
table = formatting.Table(['Username', 'Email', 'Password'])
9085
table.add_row([result['username'], result['email'], password])

0 commit comments

Comments
 (0)