Skip to content
Snippets Groups Projects
Commit 19119beb authored by Alexander Schlemmer's avatar Alexander Schlemmer
Browse files

MAINT: removed unused imports

parent f11501ce
No related branches found
No related tags found
1 merge request!123REL: Release v0.6.0
Pipeline #37558 passed
...@@ -32,39 +32,23 @@ This is just the functionality that extracts data from the file system. ...@@ -32,39 +32,23 @@ This is just the functionality that extracts data from the file system.
from __future__ import annotations from __future__ import annotations
import argparse
import importlib import importlib
import logging import logging
import os import os
import sys
import warnings import warnings
import yaml import yaml
from argparse import RawTextHelpFormatter
from collections import defaultdict
from copy import deepcopy
from enum import Enum
from importlib_resources import files from importlib_resources import files
from jsonschema import validate from jsonschema import validate
from typing import Any, Optional, Type, Union from typing import Any, Optional, Type, Union
import caosdb as db import caosdb as db
from .converters import Converter
from caosadvancedtools.cache import UpdateCache, Cache from .stores import GeneralStore, RecordStore
from caosadvancedtools.crawler import Crawler as OldCrawler from .structure_elements import StructureElement, Directory
from caosdb.apiutils import (compare_entities, EntityMergeConflictError,
merge_entities)
from caosdb.common.datatype import is_reference
from .converters import Converter, DirectoryConverter, ConverterValidationError
from .macros import defmacro_constructor, macro_constructor
from .stores import Store, GeneralStore, RecordStore
from .structure_elements import StructureElement, Directory, NoneElement
from .version import check_cfood_version from .version import check_cfood_version
from caosdb.high_level_api import convert_to_python_object
from .debug_tree import DebugTree from .debug_tree import DebugTree
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment