Skip to content

Commit 4b7e7bd

Browse files
committed
Fix unused imports (ruff lint)
1 parent d65ece7 commit 4b7e7bd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/datajoint/external.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@
55

66
from tqdm import tqdm
77

8-
from . import errors
98
from .declare import EXTERNAL_TABLE_ROOT
109
from .errors import DataJointError, MissingExternalFile
1110
from .hash import uuid_from_buffer, uuid_from_file
1211
from .heading import Heading
1312
from .settings import config
1413
from .storage import StorageBackend
1514
from .table import FreeTable, Table
16-
from .utils import safe_copy, safe_write
15+
from .utils import safe_write
1716

1817
logger = logging.getLogger(__name__.split(".")[0])
1918

src/datajoint/storage.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"""
77

88
import logging
9-
from io import BytesIO
109
from pathlib import Path, PurePosixPath
1110
from typing import Any
1211

0 commit comments

Comments
 (0)