From 03833e8ac2b8f0d13c622c26e8a811b97d295a4d Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 15 Jul 2021 12:51:46 +0200 Subject: [PATCH] arg_validator: drop wrong default value for ArgValidatorIPRoute The parameter is not used (neither by callers not the implementation). It also makes not sense. Signed-off-by: Thomas Haller --- module_utils/network_lsr/argument_validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module_utils/network_lsr/argument_validator.py b/module_utils/network_lsr/argument_validator.py index a499510..4dacc2f 100644 --- a/module_utils/network_lsr/argument_validator.py +++ b/module_utils/network_lsr/argument_validator.py @@ -488,7 +488,7 @@ class ArgValidatorIPAddr(ArgValidatorDict): class ArgValidatorIPRoute(ArgValidatorDict): - def __init__(self, name, family=None, required=False, default_value=None): + def __init__(self, name, family=None, required=False): ArgValidatorDict.__init__( self, name,