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

Commit

Permalink
Trac #34381: Fixing pyflakes issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
tscrim committed Aug 29, 2022
1 parent 70486e6 commit c041897
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/sage/rings/lazy_series_ring.py
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,6 @@ def q_pochhammer(self, q=None):
q = ZZ['q'].fraction_field().gen()
if q not in self.base_ring():
raise ValueError("q must be in the base ring")
from .lazy_series_ring import LazyLaurentSeriesRing
from sage.arith.misc import binomial
qP = q.parent()
one = qP.one()
Expand Down Expand Up @@ -1209,7 +1208,6 @@ def euler(self):
- :wikipedia:`Euler_function`
"""
from .lazy_series_ring import LazyLaurentSeriesRing
def coeff(n):
k = ZZ(24 * n + 1)
m, rem = k.sqrtrem()
Expand Down

0 comments on commit c041897

Please sign in to comment.