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

MAINT: removed unneeded imports

parent 5b87b596
No related branches found
No related tags found
2 merge requests!107ENH: add entity getters and cached functions,!104Cleanup apiutils module a bit and move git related functions to another module
Pipeline #36405 passed with warnings
......@@ -27,22 +27,19 @@
"""
import logging
import sys
import tempfile
import warnings
from collections.abc import Iterable
from subprocess import call
from typing import Optional, Any, Dict, List
from typing import Any, Dict, List
from caosdb.common.datatype import (BOOLEAN, DATETIME, DOUBLE, FILE, INTEGER,
REFERENCE, TEXT, is_reference)
from caosdb.common.models import (Container, Entity, File, Property, Query,
from caosdb.common.datatype import is_reference
from caosdb.common.models import (Container, Entity, File, Property,
Record, RecordType, execute_query,
get_config, SPECIAL_ATTRIBUTES)
SPECIAL_ATTRIBUTES)
from caosdb.exceptions import CaosDBException
from utils.git_utils import get_origin_url_in, get_diff_in, get_branch_in, get_commit_in
from caosdb.utils.git_utils import (get_origin_url_in, get_diff_in,
get_branch_in, get_commit_in)
logger = logging.getLogger(__name__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment