Skip to content

Commit a43b399

Browse files
Improved dictionary readability
1 parent ee0d546 commit a43b399

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

README.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ Basic usage example
2424
from transpose_dict import transpose_dict # or from transpose_dict import TD, for brevity
2525
2626
your_dictionary = {
27-
"a":{
28-
"0":{
29-
"I":[1,2,3],
30-
"II":[4,5,6]
27+
"a" : {
28+
"0" : {
29+
"I" : [1, 2, 3],
30+
"II" : [4, 5, 6]
3131
}
3232
},
33-
"b":{
34-
"0":{
35-
"I":[8,9,10],
36-
"II":[467,23,23]
33+
"b" : {
34+
"0" : {
35+
"I" : [8, 9, 10],
36+
"II" : [467, 23, 23]
3737
},
38-
"1":{
39-
"III":[6,7,9]
38+
"1" : {
39+
"III" : [6, 7, 9]
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)