File tree 6 files changed +29
-29
lines changed
6 files changed +29
-29
lines changed Original file line number Diff line number Diff line change 5
5
6
6
repos :
7
7
- repo : https://github.com/adamchainz/blacken-docs
8
- rev : " 1.18.0 "
8
+ rev : " 1.19.1 "
9
9
hooks :
10
10
- id : blacken-docs
11
11
additional_dependencies : [black==23.*]
29
29
- id : trailing-whitespace
30
30
31
31
- repo : https://github.com/kynan/nbstripout
32
- rev : " 0.7 .1"
32
+ rev : " 0.8 .1"
33
33
hooks :
34
34
- id : nbstripout
35
35
args :
40
40
]
41
41
42
42
- repo : https://github.com/astral-sh/ruff-pre-commit
43
- rev : " v0.6.9 "
43
+ rev : " v0.8.6 "
44
44
hooks :
45
45
- id : ruff
46
46
args : ["--fix", "--show-fixes"]
@@ -72,12 +72,12 @@ repos:
72
72
args : [--prose-wrap=always]
73
73
74
74
- repo : https://github.com/abravalheri/validate-pyproject
75
- rev : v0.20.2
75
+ rev : v0.23
76
76
hooks :
77
77
- id : validate-pyproject
78
78
79
79
- repo : https://github.com/python-jsonschema/check-jsonschema
80
- rev : 0.29.3
80
+ rev : 0.30.0
81
81
hooks :
82
82
- id : check-dependabot
83
83
- id : check-github-workflows
Original file line number Diff line number Diff line change 62
62
)
63
63
64
64
__all__ = [
65
+ "LGDO" ,
65
66
"Array" ,
66
- "ArrayOfEqualSizedArrays" ,
67
67
"ArrayOfEncodedEqualSizedArrays" ,
68
+ "ArrayOfEqualSizedArrays" ,
68
69
"FixedSizeArray" ,
69
70
"Histogram" ,
70
- "LGDO" ,
71
+ "LH5Iterator" ,
72
+ "LH5Store" ,
71
73
"Scalar" ,
72
74
"Struct" ,
73
75
"Table" ,
74
- "VectorOfVectors" ,
75
76
"VectorOfEncodedVectors" ,
77
+ "VectorOfVectors" ,
76
78
"WaveformTable" ,
79
+ "__version__" ,
77
80
"load_dfs" ,
78
81
"load_nda" ,
79
82
"ls" ,
80
83
"show" ,
81
- "LH5Iterator" ,
82
- "LH5Store" ,
83
- "__version__" ,
84
84
]
Original file line number Diff line number Diff line change 30
30
from .varlen import ULEB128ZigZagDiff
31
31
32
32
__all__ = [
33
- "WaveformCodec" ,
34
- "encode" ,
35
- "decode" ,
36
33
"RadwareSigcompress" ,
37
34
"ULEB128ZigZagDiff" ,
35
+ "WaveformCodec" ,
36
+ "decode" ,
37
+ "encode" ,
38
38
]
Original file line number Diff line number Diff line change 20
20
"LH5Store" ,
21
21
"load_dfs" ,
22
22
"load_nda" ,
23
+ "ls" ,
23
24
"read" ,
24
- "write" ,
25
25
"read_as" ,
26
- "ls" ,
27
26
"read_n_rows" ,
28
27
"show" ,
28
+ "write" ,
29
29
]
Original file line number Diff line number Diff line change 24
24
from .write .vector_of_vectors import _h5_write_vector_of_vectors
25
25
26
26
__all__ = [
27
- "_h5_read_lgdo" ,
28
- "_h5_read_vector_of_vectors" ,
29
- "_h5_read_ndarray" ,
30
27
"_h5_read_array" ,
28
+ "_h5_read_array_of_encoded_equalsized_arrays" ,
29
+ "_h5_read_array_of_equalsized_arrays" ,
31
30
"_h5_read_encoded_array" ,
32
31
"_h5_read_fixedsize_array" ,
33
- "_h5_read_array_of_equalsized_arrays" ,
34
- "_h5_read_struct" ,
35
- "_h5_read_table" ,
36
32
"_h5_read_histogram" ,
33
+ "_h5_read_lgdo" ,
34
+ "_h5_read_ndarray" ,
37
35
"_h5_read_scalar" ,
38
- "_h5_read_array_of_encoded_equalsized_arrays" ,
36
+ "_h5_read_struct" ,
37
+ "_h5_read_table" ,
39
38
"_h5_read_vector_of_encoded_vectors" ,
40
- "_h5_write_scalar " ,
39
+ "_h5_read_vector_of_vectors " ,
41
40
"_h5_write_array" ,
42
- "_h5_write_vector_of_vectors" ,
43
- "_h5_write_struct" ,
44
41
"_h5_write_lgdo" ,
42
+ "_h5_write_scalar" ,
43
+ "_h5_write_struct" ,
44
+ "_h5_write_vector_of_vectors" ,
45
45
]
Original file line number Diff line number Diff line change 15
15
from .waveformtable import WaveformTable
16
16
17
17
__all__ = [
18
+ "LGDO" ,
18
19
"Array" ,
19
- "ArrayOfEqualSizedArrays" ,
20
20
"ArrayOfEncodedEqualSizedArrays" ,
21
+ "ArrayOfEqualSizedArrays" ,
21
22
"FixedSizeArray" ,
22
23
"Histogram" ,
23
- "LGDO" ,
24
24
"Scalar" ,
25
25
"Struct" ,
26
26
"Table" ,
27
- "VectorOfVectors" ,
28
27
"VectorOfEncodedVectors" ,
28
+ "VectorOfVectors" ,
29
29
"WaveformTable" ,
30
30
]
31
31
You can’t perform that action at this time.
0 commit comments