diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-09-14 15:30:09 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-14 15:30:09 +0530 |
commit | b98e0202ec38682b1f1b646eda1b09c9b8c38689 (patch) | |
tree | 8477207b1196925d193f9187f9990c1f3f889144 /src | |
parent | f5fb2b55a8fa794959a37ccc745b87735b05b572 (diff) | |
download | vyos-workflow-test-temp-b98e0202ec38682b1f1b646eda1b09c9b8c38689.tar.gz vyos-workflow-test-temp-b98e0202ec38682b1f1b646eda1b09c9b8c38689.zip |
T6678: files listing approach updated
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/test.py | 1 |
1 files changed, 1 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."""
|