remove default=None for config options
In the cfg module default=None is set as the default value. It's not necessary to set it again when defining config options. Change-Id: Idc8e07b67c884c4c6e6632f7e31efd384353e34c Closes-Bug: #1323975
This commit is contained in:
parent
6f039e32bc
commit
d9fe301633
@ -25,8 +25,8 @@ _DEFAULT = (
|
||||
_AUTH_OPTIONS = (
|
||||
cfg.BoolOpt("auth_on", default=False),
|
||||
cfg.StrOpt("url", default="https://127.0.0.1:5000/v2.0/tokens"),
|
||||
cfg.StrOpt("username", default=None),
|
||||
cfg.StrOpt("password", default=None),
|
||||
cfg.StrOpt("username"),
|
||||
cfg.StrOpt("password"),
|
||||
)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user