summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tests/test.py1
-rw-r--r--src/tests/test_config_parser.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/tests/test.py b/src/tests/test.py
index 46803bd..f64dac9 100644
--- a/src/tests/test.py
+++ b/src/tests/test.py
@@ -1,6 +1,7 @@
from typing import List
import os
+import json
def sum_even_numbers(numbers: List[int]) -> int:
"""Given a list of integers, return the sum of all even numbers in the list."""
diff --git a/src/tests/test_config_parser.py b/src/tests/test_config_parser.py
index 8016feb..def278f 100644
--- a/src/tests/test_config_parser.py
+++ b/src/tests/test_config_parser.py
@@ -15,6 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import vyos.configtree
+import json
from unittest import TestCase