diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-04 20:20:38 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-04-04 18:35:52 +0000 |
commit | 7589e1da8ca63576e651ea1f7da86ea65045ad2a (patch) | |
tree | 002e93b58d87742fcf8c969386fcebe1d8228919 /src/services/api/graphql/session/composite | |
parent | 9d94afcba122ae6d4620e21b3e1ef1555b7bb2e1 (diff) | |
download | vyos-1x-7589e1da8ca63576e651ea1f7da86ea65045ad2a.tar.gz vyos-1x-7589e1da8ca63576e651ea1f7da86ea65045ad2a.zip |
T6199: drop unused Python imports from graphql source
(cherry picked from commit 9b4a3bc54ec6d2ff8e435add5e2de995a54dfc6a)
Diffstat (limited to 'src/services/api/graphql/session/composite')
-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 |