diff options
author | Christian Breunig <christian@breunig.cc> | 2025-06-23 22:33:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-23 22:33:46 +0200 |
commit | e2ee2a254e89103fb8ea2d432d98af38c8c18384 (patch) | |
tree | 76186319261b6b2933d815b7f104b4fc0b1a3075 /src | |
parent | a4e2f96b133a9f753b6b9fd4686f3ff2a8694dfe (diff) | |
parent | 6281059dc5de3a906b63c59b0b71050ea0022446 (diff) | |
download | vyos-1x-e2ee2a254e89103fb8ea2d432d98af38c8c18384.tar.gz vyos-1x-e2ee2a254e89103fb8ea2d432d98af38c8c18384.zip |
Merge pull request #4571 from c-po/T7355-cleanup
T7355: periodical cleanup of unused Python3 import statements
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/nat.py | 1 | ||||
-rwxr-xr-x | src/helpers/teardown-config-session.py | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/conf_mode/nat.py b/src/conf_mode/nat.py index a938021ba..564438237 100755 --- a/src/conf_mode/nat.py +++ b/src/conf_mode/nat.py @@ -23,7 +23,6 @@ from vyos.base import Warning from vyos.config import Config from vyos.configdep import set_dependents, call_dependents from vyos.template import render -from vyos.template import is_ip_network from vyos.utils.kernel import check_kmod from vyos.utils.dict import dict_search from vyos.utils.dict import dict_search_args diff --git a/src/helpers/teardown-config-session.py b/src/helpers/teardown-config-session.py index c94876924..8d13e34cb 100755 --- a/src/helpers/teardown-config-session.py +++ b/src/helpers/teardown-config-session.py @@ -13,11 +13,8 @@ # # 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 sys -import os from vyos.vyconf_session import VyconfSession |