Skip to content

Commit aa9f5e6

Browse files
committed
details suggested
1 parent 6b97703 commit aa9f5e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/topology/simplicial_set_constructions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def __init__(self, data, ambient=None):
170170
if ambient is None:
171171
ambient = self
172172
if (ambient.is_pointed()
173-
and hasattr(ambient, '_basepoint')
173+
and hasattr(ambient, '_basepoint')
174174
and ambient.base_point() in data):
175175
SimplicialSet_finite.__init__(self, data, base_point=ambient.base_point())
176176
else:
@@ -500,7 +500,7 @@ def __init__(self, maps=None):
500500
# the product.
501501
translate = {}
502502
for simplices in itertools.product(*nondegen):
503-
dims = [_.dimension() for _ in simplices]
503+
dims = [s.dimension() for s in simplices]
504504
dim_max = max(dims)
505505
sum_dims = sum(dims)
506506
for d in range(dim_max, sum_dims + 1):

0 commit comments

Comments
 (0)