diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-04 20:34:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-04 20:34:22 +0200 |
commit | 3099c96ab7db359da335636bbfcc33c4d6f6e249 (patch) | |
tree | 03568ba4ce862e860aced9ebe65919a4293a4f78 /src/services/api/graphql/session/composite/system_status.py | |
parent | eedc83e8a5532713d274439254b135c232a99a35 (diff) | |
parent | faa153524f04ebe8ab5f12d7afe6df2a6eb3728a (diff) | |
download | vyos-1x-3099c96ab7db359da335636bbfcc33c4d6f6e249.tar.gz vyos-1x-3099c96ab7db359da335636bbfcc33c4d6f6e249.zip |
Merge pull request #3246 from c-po/spring-cleaning-2
T6199: drop unused Python imports from graphql source
Diffstat (limited to 'src/services/api/graphql/session/composite/system_status.py')
-rwxr-xr-x | src/services/api/graphql/session/composite/system_status.py | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/services/api/graphql/session/composite/system_status.py b/src/services/api/graphql/session/composite/system_status.py index d809f32e3..516a4eff6 100755 --- a/src/services/api/graphql/session/composite/system_status.py +++ b/src/services/api/graphql/session/composite/system_status.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2022 VyOS maintainers and contributors +# Copyright (C) 2022-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 @@ -13,15 +13,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 -import sys -import json -import importlib.util - -from vyos.defaults import directories from api.graphql.libs.op_mode import load_op_mode_as_module |