We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4ca265 commit fd2cf53Copy full SHA for fd2cf53
src/sage/categories/simplicial_sets.py
@@ -372,7 +372,7 @@ def _universal_cover_dict(self):
372
G = FG.quotient(rels)
373
char = {g : G.gen(i) for i,g in enumerate(gens)}
374
for e in edges:
375
- if not e in gens:
+ if e not in gens:
376
char[e] = G.one()
377
return (G, char)
378
@@ -464,7 +464,7 @@ def covering_map(self, character):
464
465
for d in range(1, self.dimension() + 1):
466
for s in self.n_cells(d):
467
- if not s in char.keys():
+ if s not in char.keys():
468
if d==1 and s.is_degenerate():
469
char[s] = G.one()
470
elif s.is_degenerate():
0 commit comments