Skip to content

Commit 8a24b73

Browse files
committed
Merge branch 'develop' of https://github.com/thulab/dwf-sdk-python into develop
2 parents 692dd50 + c5fb0a2 commit 8a24b73

File tree

13 files changed

+93
-735
lines changed

13 files changed

+93
-735
lines changed

dwf/algorithm/metadata/algorithm_crud.py

+54-320
Large diffs are not rendered by default.

dwf/common/exception.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ def __init__(self, status, msg):
3434
NUM_RESULT_MISMATCH = DWFException(3002, '查询记录结果数不符合预期')
3535
ILLEGAL_REPEATED_FILED = DWFException(3003, '字段不可重复')
3636
NON_EXISTING_ALGORITHM = DWFException(3004, '算法不存在')
37-
NON_EXISTING_DATA_PATTERN = DWFException(3004, '数据模式不存在')
37+
NON_EXISTING_DATA_PATTERN = DWFException(3005, '数据模式不存在')
38+
NON_EXISTING_PACKAGE = DWFException(3006, '包不存在')
39+
3840
'''
3941
Exceptions for Files
4042
'''

dwf/dataset/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
__path__ = extend_path(__path__, __name__)
55

66

7-
__all__ = ['io','metadata']
7+
__all__ = ['metadata']

dwf/dataset/io/__init__.py

Whitespace-only changes.

dwf/dataset/io/encode.py

-125
This file was deleted.

dwf/dataset/io/format.py

-48
This file was deleted.

dwf/dataset/io/parser.py

-59
This file was deleted.

dwf/dataset/io/read.py

-124
This file was deleted.

0 commit comments

Comments
 (0)