Skip to content

Commit

Permalink
Merge pull request #167 from aiven/tapio-fix-trivial-args
Browse files Browse the repository at this point in the history
Fix args for account create and project delete.

#167
  • Loading branch information
Ormod authored Dec 2, 2020
2 parents d59d7c9 + 588ab00 commit 43e9380
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiven/client/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3026,11 +3026,11 @@ def project__switch(self):
)
)

@arg("service_name", help="Project name")
@arg("project_name", help="Project name")
@arg.cloud
def project__delete(self):
"""Delete a project"""
self.client.delete_project(project=self.args.service_name)
self.client.delete_project(project=self.args.project_name)

@classmethod
def _format_card_info(cls, project):
Expand Down

0 comments on commit 43e9380

Please sign in to comment.