File tree Expand file tree Collapse file tree 3 files changed +23
-7
lines changed Expand file tree Collapse file tree 3 files changed +23
-7
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ extra protocol. For the above example it would look like this:
208208In one line:
209209
210210``` json
211- {"s3" : {"key" : " my_super_private_key" , "secret" : " my_super_private_secret" }, "simplecache" : {"cache_storage" : " /custom/temp/storage/path" }
211+ {"s3" : {"key" : " my_super_private_key" , "secret" : " my_super_private_secret" }, "simplecache" : {"cache_storage" : " /custom/temp/storage/path" }}
212212```
213213
214214## CLI Reference
Original file line number Diff line number Diff line change 4242following, per the SEG-Y Rev1 standard:
4343
4444\b
45- ` --header-names inline,crossline
45+ --header-names inline,crossline
4646--header-locations 189,193
4747--header-types int32,int32
4848
Original file line number Diff line number Diff line change 1515
1616
1717ALLOWED_TYPES = [
18- np .sctypes ["others" ][0 ].__name__ , # boolean # noqa: NPY201
19- * [t .__name__ for t in np .sctypes ["int" ]], # noqa: NPY201
20- * [t .__name__ for t in np .sctypes ["uint" ]], # noqa: NPY201
21- * [t .__name__ for t in np .sctypes ["float" ]], # noqa: NPY201
22- * [t .__name__ for t in np .sctypes ["complex" ]], # noqa: NPY201
18+ # Boolean
19+ np .bool_ .__name__ ,
20+ # Signed integers
21+ np .int8 .__name__ ,
22+ np .int16 .__name__ ,
23+ np .int32 .__name__ ,
24+ np .int64 .__name__ ,
25+ # Unsigned integers
26+ np .uint8 .__name__ ,
27+ np .uint16 .__name__ ,
28+ np .uint32 .__name__ ,
29+ np .uint64 .__name__ ,
30+ # Floating point
31+ np .float16 .__name__ ,
32+ np .float32 .__name__ ,
33+ np .float64 .__name__ ,
34+ np .float128 .__name__ ,
35+ # Complex
36+ np .complex64 .__name__ ,
37+ np .complex128 .__name__ ,
38+ np .clongdouble .__name__ ,
2339]
2440
2541
You can’t perform that action at this time.
0 commit comments