Skip to content

Commit d57804e

Browse files
authored
Merge pull request #34964 from yyyyx4/public/linter-20230206
Fix linter issues
2 parents 698001b + e9b3afc commit d57804e

File tree

5 files changed

+2
-6
lines changed

5 files changed

+2
-6
lines changed

src/sage/algebras/quantum_groups/quantum_group_gap.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2689,4 +2689,3 @@ def _unpickle_generic_element(parent, data):
26892689
ret.append(libgap(data[2 * i]))
26902690
ret.append(one * libgap(data[2 * i + 1].subs(q=parent._libgap_q)))
26912691
return parent.element_class(parent, F.ObjByExtRep(ret))
2692-

src/sage/combinat/vector_partition.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,4 +333,3 @@ def __iter__(self):
333333
new_parts = self._parts[i+1:]
334334
for vecpar in VectorPartitions(new_vec, min=self._min, parts=new_parts, distinct=self._distinct, is_repeatable=self._is_repeatable):
335335
yield self.element_class(self, [list(part)] + list(vecpar))
336-

src/sage/modular/modform/notes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""
1+
r"""
22
Design notes
33
44
The implementation depends on the fact that we have dimension formulas

src/sage/rings/generic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,4 +257,3 @@ def __iter__(self):
257257
yield self.df
258258

259259
return tuple(prod(_aux(*tup) for tup in pairs))
260-

src/sage/sat/solvers/dimacs.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def render_dimacs(clauses, filename, nlits):
357357
fh.close()
358358

359359
def _run(self):
360-
"""
360+
r"""
361361
Run 'command' and collect output.
362362
363363
TESTS:
@@ -752,4 +752,3 @@ class Kissat(DIMACS):
752752
"""
753753

754754
command = "kissat -q {input}"
755-

0 commit comments

Comments
 (0)