Make begin and end optional when get dataframes
when get dataframes with `cloudkitty storage-dataframe-list`, begin and end is mandatory. make it optional like get total Change-Id: I0a0f4073888621833b0bb6588a0452a642327797 Closes-Bug: #1640372
This commit is contained in:
@@ -19,10 +19,10 @@ from cloudkittyclient.common import utils
|
||||
|
||||
@utils.arg('-b', '--begin',
|
||||
help='Starting date/time (YYYY-MM-ddThh:mm:ss)',
|
||||
required=True)
|
||||
required=False)
|
||||
@utils.arg('-e', '--end',
|
||||
help='Ending date/time (YYYY-MM-ddThh:mm:ss)',
|
||||
required=True)
|
||||
required=False)
|
||||
@utils.arg('-t', '--tenant',
|
||||
help='Tenant ID',
|
||||
required=False,
|
||||
|
Reference in New Issue
Block a user