Added type hints

This commit is contained in:
Marek Wolan
2023-07-14 12:01:38 +01:00
parent 9650669c83
commit c2931bde6c
16 changed files with 166 additions and 128 deletions

View File

@@ -1,12 +1,16 @@
# Crown Copyright (C) Dstl 2022. DEFCON 703. Shared in confidence.
import os
from pathlib import Path
from typing import TYPE_CHECKING
import pkg_resources
from primaite import getLogger
_LOGGER = getLogger(__name__)
if TYPE_CHECKING:
from logging import Logger
_LOGGER: "Logger" = getLogger(__name__)
def get_file_path(path: str) -> Path: