@@ -1250,21 +1250,21 @@ def load_data(n: int, user=True) -> dict:
1250
1250
We test data from the ``database_mutation_class`` optional package::
1251
1251
1252
1252
sage: load_data(2, user=False) # optional - database_mutation_class
1253
- {('G', 2): [('AO', (((0, 1), (1, -3)), )), ('AO', (((0, 1), (3, -1)), ))]}
1253
+ {('G', 2): [('AO', (((0, 1), (1, -3)),)), ('AO', (((0, 1), (3, -1)),))]}
1254
1254
sage: D = load_data(3, user=False) # optional - database_mutation_class
1255
1255
sage: sorted(D.items()) # optional - database_mutation_class
1256
1256
[(('G', 2, -1),
1257
- [('BH?', (((1, 2), (1, -3)), )),
1258
- ('BGO', (((2, 1), (3, -1)), )),
1259
- ('BW?', (((0, 1), (3, -1)), )),
1260
- ('BP?', (((0, 1), (1, -3)), )),
1257
+ [('BH?', (((1, 2), (1, -3)),)),
1258
+ ('BGO', (((2, 1), (3, -1)),)),
1259
+ ('BW?', (((0, 1), (3, -1)),)),
1260
+ ('BP?', (((0, 1), (1, -3)),)),
1261
1261
('BP_', (((0, 1), (1, -3)), ((2, 0), (3, -1)))),
1262
1262
('BP_', (((0, 1), (3, -1)), ((1, 2), (1, -3)), ((2, 0), (2, -2))))]),
1263
1263
(('G', 2, 1),
1264
- [('BH?', (((1, 2), (3, -1)), )),
1265
- ('BGO', (((2, 1), (1, -3)), )),
1266
- ('BW?', (((0, 1), (1, -3)), )),
1267
- ('BP?', (((0, 1), (3, -1)), )),
1264
+ [('BH?', (((1, 2), (3, -1)),)),
1265
+ ('BGO', (((2, 1), (1, -3)),)),
1266
+ ('BW?', (((0, 1), (1, -3)),)),
1267
+ ('BP?', (((0, 1), (3, -1)),)),
1268
1268
('BKO', (((1, 0), (3, -1)), ((2, 1), (1, -3)))),
1269
1269
('BP_', (((0, 1), (2, -2)), ((1, 2), (1, -3)), ((2, 0), (3, -1))))])]
1270
1270
"""
0 commit comments