Skip to content
Snippets Groups Projects
Commit 8c58a0cd authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

MAINT: remove unnecessary import

parent 857055c0
No related branches found
No related tags found
1 merge request!160STY: styling
Pipeline #38183 passed
...@@ -60,8 +60,6 @@ from .stores import Store, GeneralStore, RecordStore ...@@ -60,8 +60,6 @@ from .stores import Store, GeneralStore, RecordStore
from .structure_elements import StructureElement, Directory, NoneElement 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
class DebugTree(object): class DebugTree(object):
......
...@@ -24,15 +24,17 @@ ...@@ -24,15 +24,17 @@
# #
from __future__ import annotations from __future__ import annotations
import yaml
import logging
from abc import ABCMeta, abstractmethod
from datetime import datetime from datetime import datetime
from caosdb.cached import cached_get_entity_by
from typing import Any from typing import Any
from .identifiable import Identifiable
import caosdb as db import caosdb as db
import logging import yaml
from abc import abstractmethod, ABCMeta from caosdb.cached import cached_get_entity_by
from .identifiable import Identifiable
from .utils import has_parent from .utils import has_parent
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