Skip to content

Commit

Permalink
Update service_accounts.py (#4788)
Browse files Browse the repository at this point in the history
fix typos in parser configuration

Co-authored-by: Takashi Matsuo <tmatsuo@google.com>
  • Loading branch information
yshalabi and Takashi Matsuo authored Oct 2, 2020
1 parent d072ac3 commit d85e2ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iam/api-client/service_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,12 @@ def main():
# Disable
rename_parser = subparsers.add_parser(
'disable', help=disable_service_account.__doc__)
list_parser.addargument('email')
list_parser.add_argument('email')

# Enable
rename_parser = subparsers.add_parser(
'enable', help=enable_service_account.__doc__)
list_parser.addargument('email')
list_parser.add_argument('email')

# Delete
delete_parser = subparsers.add_parser(
Expand Down

0 comments on commit d85e2ca

Please sign in to comment.