From 4e03fee27f1ebff2741eb57fb0de4d7d80043636 Mon Sep 17 00:00:00 2001 From: Martin Rubey Date: Fri, 12 Aug 2022 15:59:53 +0200 Subject: [PATCH] remove unused local variable --- src/sage/rings/lazy_series.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sage/rings/lazy_series.py b/src/sage/rings/lazy_series.py index f580ed47191..5bc647340c1 100644 --- a/src/sage/rings/lazy_series.py +++ b/src/sage/rings/lazy_series.py @@ -3727,7 +3727,6 @@ def __call__(self, *args, check=True): gs = g.symmetric_function() return P(f(gs)) - BR = P.base_ring() if isinstance(g, LazySymmetricFunction): R = P._laurent_poly_ring else: @@ -4219,4 +4218,3 @@ def parenthesize(m): poly = formatter(*([parenthesize(mo) for mo in mons] + bigO), sep=" + ") return poly -