From d48ab2c3e9a509a88c3c68a8950c45eb390dff6d Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Fri, 13 Aug 2021 16:20:26 +0530 Subject: [PATCH] fix bad quotes --- sumpy/e2e.py | 2 +- sumpy/expansion/local.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/sumpy/e2e.py b/sumpy/e2e.py index 5f4897e5..fa640845 100644 --- a/sumpy/e2e.py +++ b/sumpy/e2e.py @@ -85,7 +85,7 @@ class E2EBase(KernelCacheWrapper): self.name = name or self.default_name self.device = device self.use_preprocessing_for_m2l = getattr(self.tgt_expansion, - 'use_preprocessing_for_m2l', False) + "use_preprocessing_for_m2l", False) if src_expansion.dim != tgt_expansion.dim: raise ValueError("source and target expansions must have " diff --git a/sumpy/expansion/local.py b/sumpy/expansion/local.py index 8b655cec..726ab086 100644 --- a/sumpy/expansion/local.py +++ b/sumpy/expansion/local.py @@ -760,7 +760,6 @@ class _FourierBesselLocalExpansion(LocalExpansionBase): super().__init__(kernel, order, use_rscale, use_preprocessing_for_m2l=use_preprocessing_for_m2l) - def get_storage_index(self, k): return self.order+k -- GitLab