diff options
-rw-r--r-- | .github/workflows/check-unused-imports.yml | 2 | ||||
-rw-r--r-- | src/tests/helper.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/check-unused-imports.yml b/.github/workflows/check-unused-imports.yml index aada264..001a80f 100644 --- a/.github/workflows/check-unused-imports.yml +++ b/.github/workflows/check-unused-imports.yml @@ -11,5 +11,5 @@ permissions: jobs: check-unused-imports: - uses: vyos/.github/.github/workflows/check-unused-imports.yml@feature/T6349-reusable-workflows + uses: vyos/.github/.github/workflows/check-unused-imports.yml@feature/py-files-filter secrets: inherit diff --git a/src/tests/helper.py b/src/tests/helper.py index b994f8e..f6a99f0 100644 --- a/src/tests/helper.py +++ b/src/tests/helper.py @@ -16,6 +16,7 @@ import sys import importlib.util +import math def prepare_module(file_path='', module_name=''): spec = importlib.util.spec_from_file_location(module_name, file_path) |