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

Commit

Permalink
Fix unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorkarn committed Oct 15, 2022
1 parent 291d799 commit 382926c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/sage/combinat/partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -4799,7 +4799,6 @@ def vertical_border_strip_cells(self, k):
return []

shelf = []
res = []
i = 0
ell = len(self._list)
while i < ell:
Expand Down Expand Up @@ -4856,7 +4855,6 @@ def horizontal_border_strip_cells(self, k):
return list()

L = self._list
res = []
shelf = [k] # the number of boxes which will fit in a row
mapping = [0] # a record of the rows
for i in range(len(L)-1):
Expand Down

0 comments on commit 382926c

Please sign in to comment.