Remove unwanted 'required' parameters

Closes-Bug: #1655419
Change-Id: I7642161a8b8f68c461cbb08520f9e6c6fa8b7863
This commit is contained in:
Bharath Thiruveedula
2017-01-07 01:08:08 +05:30
parent 27a9ed8a35
commit b91c8a745e
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ class CreateNS(tackerV10.CreateCommand):
def add_known_arguments(self, parser): def add_known_arguments(self, parser):
parser.add_argument( parser.add_argument(
'name', metavar='NAME', required=True, 'name', metavar='NAME',
help=_('Set a name for the NS')) help=_('Set a name for the NS'))
parser.add_argument( parser.add_argument(
'--description', '--description',

View File

@@ -45,7 +45,7 @@ class CreateNSD(tackerV10.CreateCommand):
required=True) required=True)
parser.add_argument( parser.add_argument(
'name', metavar='NAME', 'name', metavar='NAME',
help='Set a name for the NSD', required=True) help='Set a name for the NSD')
parser.add_argument( parser.add_argument(
'--description', '--description',
help='Set a description for the NSD') help='Set a description for the NSD')