removes helper function to create config folder

This commit is contained in:
Mose Müller
2023-12-20 10:14:07 +01:00
parent 97c026afe0
commit 464478cda9
2 changed files with 0 additions and 27 deletions

View File

@ -1,7 +1,6 @@
import inspect
import logging
from itertools import chain
from pathlib import Path
from typing import Any
logger = logging.getLogger(__name__)
@ -197,9 +196,3 @@ def get_data_service_class_reference() -> Any:
def is_property_attribute(target_obj: Any, attr_name: str) -> bool:
return isinstance(getattr(type(target_obj), attr_name, None), property)
def create_config_folder(config_dir: Path) -> None:
"""Create a configuration directory if it doesn't already exist."""
config_dir.mkdir(exist_ok=True)