updade from Atlas repo
This commit is contained in:
@@ -17,7 +17,7 @@ d1 = dict(DIAL_CODES) # <1>
|
||||
print('d1:', d1.keys())
|
||||
d2 = dict(sorted(DIAL_CODES)) # <2>
|
||||
print('d2:', d2.keys())
|
||||
d3 = dict(sorted(DIAL_CODES, key=lambda x:x[1])) # <3>
|
||||
d3 = dict(sorted(DIAL_CODES, key=lambda x: x[1])) # <3>
|
||||
print('d3:', d3.keys())
|
||||
assert d1 == d2 and d2 == d3 # <4>
|
||||
# end::DIALCODES[]
|
||||
|
||||
Reference in New Issue
Block a user