diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-04 19:38:01 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-03-04 21:43:59 +0100 |
commit | bb705d1a90cad14f07b5e61c44365868283feee9 (patch) | |
tree | c00bea605d8308a724a9dcf5fbc422ca62a239ff /src/conf_mode/vrf.py | |
parent | e2a46280601aee4846776ebad08ed367aa115460 (diff) | |
download | vyos-1x-bb705d1a90cad14f07b5e61c44365868283feee9.tar.gz vyos-1x-bb705d1a90cad14f07b5e61c44365868283feee9.zip |
vrf: T31: remove superfluous vyos.vrf library functions
vyos.vrf.list_vrfs() was only used in one function thus building a library is
no longer needed. If it is needed in the future it should be placed into a
library again.
Diffstat (limited to 'src/conf_mode/vrf.py')
-rwxr-xr-x | src/conf_mode/vrf.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/conf_mode/vrf.py b/src/conf_mode/vrf.py index 75b19da23..c2bbc72b3 100755 --- a/src/conf_mode/vrf.py +++ b/src/conf_mode/vrf.py @@ -22,7 +22,6 @@ from subprocess import check_call, CalledProcessError from vyos.config import Config from vyos.configdict import list_diff from vyos import ConfigError -from vyos import vrf default_config_data = { 'vrf_add': [], |