diff options
| author | J08nY | 2023-04-11 17:51:06 +0200 |
|---|---|---|
| committer | J08nY | 2023-04-11 17:51:06 +0200 |
| commit | 28437af9c2eb1f116d5ec8b35a1e0be21a01288b (patch) | |
| tree | ab9aa0a75441d4ca37647df8ea258097c25a7f16 | |
| parent | 0da98193e18fd405e494ad3f1cf565bcd92edf81 (diff) | |
| download | sec-certs-28437af9c2eb1f116d5ec8b35a1e0be21a01288b.tar.gz sec-certs-28437af9c2eb1f116d5ec8b35a1e0be21a01288b.tar.zst sec-certs-28437af9c2eb1f116d5ec8b35a1e0be21a01288b.zip | |
Fix annotations import.
| -rw-r--r-- | tests/fips/conftest.py | 2 | ||||
| -rw-r--r-- | tests/fips/test_fips_certificate.py | 2 | ||||
| -rw-r--r-- | tests/fips/test_fips_dataset.py | 2 | ||||
| -rw-r--r-- | tests/fips/test_fips_iut.py | 2 | ||||
| -rw-r--r-- | tests/fips/test_fips_mip.py | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/tests/fips/conftest.py b/tests/fips/conftest.py index 903162a8..f4482ece 100644 --- a/tests/fips/conftest.py +++ b/tests/fips/conftest.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import shutil from pathlib import Path from typing import Any diff --git a/tests/fips/test_fips_certificate.py b/tests/fips/test_fips_certificate.py index 1b33eeb3..e8f1c9c8 100644 --- a/tests/fips/test_fips_certificate.py +++ b/tests/fips/test_fips_certificate.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import json from pathlib import Path diff --git a/tests/fips/test_fips_dataset.py b/tests/fips/test_fips_dataset.py index 19fc33c0..8a28c322 100644 --- a/tests/fips/test_fips_dataset.py +++ b/tests/fips/test_fips_dataset.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import json import shutil from pathlib import Path diff --git a/tests/fips/test_fips_iut.py b/tests/fips/test_fips_iut.py index 81fc751e..0254a01e 100644 --- a/tests/fips/test_fips_iut.py +++ b/tests/fips/test_fips_iut.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import datetime from pathlib import Path diff --git a/tests/fips/test_fips_mip.py b/tests/fips/test_fips_mip.py index 16b3b500..37ba3c3a 100644 --- a/tests/fips/test_fips_mip.py +++ b/tests/fips/test_fips_mip.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import datetime from pathlib import Path |
