diff options
author | Christian Breunig <christian@breunig.cc> | 2024-08-04 08:45:12 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-08-20 07:14:02 +0200 |
commit | f6c0fea07059f8543df1cb2fe8f8e53ffc0fc8db (patch) | |
tree | 966a9722872fc846fda7154a2926c46d244296b9 | |
parent | 827fcb2967ec41d288248e5760707e3980415a34 (diff) | |
download | vyos-1x-f6c0fea07059f8543df1cb2fe8f8e53ffc0fc8db.tar.gz vyos-1x-f6c0fea07059f8543df1cb2fe8f8e53ffc0fc8db.zip |
multicast: T6619: remove unused imports
(cherry picked from commit 9979afa15650bd609399030da1751488baaac70b)
-rwxr-xr-x | src/conf_mode/protocols_static_multicast.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/conf_mode/protocols_static_multicast.py b/src/conf_mode/protocols_static_multicast.py index 2bf794042..d323ceb4f 100755 --- a/src/conf_mode/protocols_static_multicast.py +++ b/src/conf_mode/protocols_static_multicast.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2020 VyOS maintainers and contributors +# Copyright (C) 2020-2024 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -14,7 +14,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -import os from ipaddress import IPv4Address from sys import exit @@ -22,8 +21,7 @@ from sys import exit from vyos import ConfigError from vyos import frr from vyos.config import Config -from vyos.utils.process import call -from vyos.template import render, render_to_string +from vyos.template import render_to_string from vyos import airbag airbag.enable() |