Get tests working with new ACL changes

This commit is contained in:
Marek Wolan
2023-07-18 11:16:39 +01:00
parent 652c9f1b90
commit 72e72c80c2
5 changed files with 8 additions and 9 deletions

View File

@@ -1,11 +1,8 @@
# Crown Owned Copyright (C) Dstl 2023. DEFCON 703. Shared in confidence.
from typing import TYPE_CHECKING
from logging import Logger
from primaite import getLogger
if TYPE_CHECKING:
from logging import Logger
_LOGGER: Logger = getLogger(__name__)

View File

@@ -2,16 +2,13 @@
import filecmp
import os
import shutil
from logging import Logger
from pathlib import Path
from typing import TYPE_CHECKING
import pkg_resources
from primaite import getLogger, USERS_CONFIG_DIR
if TYPE_CHECKING:
from logging import Logger
_LOGGER: Logger = getLogger(__name__)