From 7b7665a0e004452c51162cd2409da76e4e3eb280 Mon Sep 17 00:00:00 2001 From: "[6~" Date: Fri, 17 Jan 2020 11:45:04 -0500 Subject: [PATCH] Adapt to changed flake8 naming --- meshmode/mesh/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshmode/mesh/tools.py b/meshmode/mesh/tools.py index df1c353c..dd16d5b2 100644 --- a/meshmode/mesh/tools.py +++ b/meshmode/mesh/tools.py @@ -124,7 +124,7 @@ def rand_rotation_matrix(ambient_dim, deflection=1.0, randnums=None): # has length sqrt(2) to eliminate the 2 in the Householder matrix. r = np.sqrt(z) - Vx, Vy, Vz = V = ( + Vx, Vy, Vz = V = ( # noqa: N806 np.sin(phi) * r, np.cos(phi) * r, np.sqrt(2.0 - z) -- GitLab