Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Fix accidental check=False
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorkarn committed Aug 12, 2022
1 parent 6d1395e commit 630017d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 29 deletions.
5 changes: 2 additions & 3 deletions src/sage/combinat/diagram.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def __init__(self, parent, cells, n_rows=None, n_cols=None, check=False):
self._n_nonempty_rows = len(set(i for i, j in self._cells))
self._n_nonempty_cols = len(set(j for i, j in self._cells))

ClonableArray.__init__(self, parent, cells, check=False)
ClonableArray.__init__(self, parent, cells, check)

def _hash_(self):
r"""
Expand Down Expand Up @@ -373,7 +373,7 @@ def pp(self):
output_str += '. '
output_str += '\n'

print(output_str)
print(output_str, end='') # don't double up on `\n`'ss

def n_rows(self):
r"""
Expand Down Expand Up @@ -935,7 +935,6 @@ def RotheDiagram(w):
. . . . . O . . .
. . . . . . . . .
Currently, only elements of the parent
:class:`sage.combinat.permutations.Permutations` are supported. In
particular, elements of permutation groups are not supported::
Expand Down
26 changes: 0 additions & 26 deletions src/sage/combinat/diagram_minimal.py

This file was deleted.

0 comments on commit 630017d

Please sign in to comment.