From 996112d204f2f3a16a89ae2ca6d46c0fd673886c Mon Sep 17 00:00:00 2001 From: Logan Bishop-Van Horn Date: Thu, 21 Sep 2023 07:32:38 -0700 Subject: [PATCH] cast center to a tuple in sources.CurrentLoop --- tdgl/sources/loop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdgl/sources/loop.py b/tdgl/sources/loop.py index fe2df13..786b12c 100644 --- a/tdgl/sources/loop.py +++ b/tdgl/sources/loop.py @@ -58,7 +58,7 @@ def CurrentLoop( loop_vector_potential, current=current, radius=radius, - center=center, + center=tuple(center), current_units=current_units, field_units=field_units, length_units=length_units,