Skip to content

Commit 653d5dc

Browse files
Fix unused imports.
1 parent 3f19598 commit 653d5dc

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

datajoint/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
"DataJointError",
5151
"key",
5252
"key_hash",
53+
"logger",
54+
"migrate_dj011_external_blob_storage_to_dj012",
5355
]
5456

5557
from .logging import logger

datajoint/declare.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import re
66
import pyparsing as pp
77
import logging
8-
import warnings
98
from .errors import DataJointError, _support_filepath_types, FILEPATH_FEATURE_SWITCH
109
from .attribute_adapter import get_adapter
1110

datajoint/logging.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import logging
22
import os
33
import sys
4-
import io
54

65
logger = logging.getLogger(__name__.split(".")[0])
76

0 commit comments

Comments
 (0)