diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-09-14 15:35:33 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-14 15:35:33 +0530 |
commit | 908b1f811dbd74a7fe17bbe13ce0bffd1fb75196 (patch) | |
tree | ff52214f32551b4576dbf5843437f14745673065 /src | |
parent | a808b2d7331b44196501b9bbe4bc7dfa67cbd134 (diff) | |
parent | 05f4b8eb2967e98e7988aceee4f57aded56a7027 (diff) | |
download | vyos-workflow-test-temp-908b1f811dbd74a7fe17bbe13ce0bffd1fb75196.tar.gz vyos-workflow-test-temp-908b1f811dbd74a7fe17bbe13ce0bffd1fb75196.zip |
Merge pull request #56 from kumvijaya/current
T6678: no change in py
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/test.py | 1 | ||||
-rw-r--r-- | src/tests/test_config_parser.py | 1 |
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 |