From 9744b8e10fcc58a0266e4e0e02dd593c71406b5f Mon Sep 17 00:00:00 2001 From: Thomas Mangin Date: Fri, 27 Mar 2020 22:02:18 +0000 Subject: ifconfig: T2057: option forcing The code was trying to not perform change when not necessary however it prevent zero value to be set --- python/vyos/ifconfig/control.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'python/vyos/ifconfig/control.py') diff --git a/python/vyos/ifconfig/control.py b/python/vyos/ifconfig/control.py index 28adc80d1..4c614c94f 100644 --- a/python/vyos/ifconfig/control.py +++ b/python/vyos/ifconfig/control.py @@ -50,9 +50,6 @@ class Control(Register): """ Using the defined names, set data write to sysfs. """ - if not value and not self._command_set[name].get('force', False): - return None - # the code can pass int as int value = str(value) @@ -110,9 +107,6 @@ class Control(Register): """ Using the defined names, set data write to sysfs. """ - if not value and not self._sysfs_set[name].get('force', False): - return None - # the code can pass int as int value = str(value) -- cgit v1.2.3