From 6e53bcf65f95641e53b21d6d55d773f0025c7aaa 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 ArgValidatorIPAddr 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 6f953b7..a499510 100644 --- a/module_utils/network_lsr/argument_validator.py +++ b/module_utils/network_lsr/argument_validator.py @@ -442,7 +442,7 @@ class ArgValidatorMac(ArgValidatorStr): class ArgValidatorIPAddr(ArgValidatorDict): - def __init__(self, name, family=None, required=False, default_value=None): + def __init__(self, name, family=None, required=False): ArgValidatorDict.__init__( self, name,