From a5d9d9e28dba47e8b08c5e56caef3aa1c9270d05 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Thu, 29 Nov 2018 17:30:01 -0800 Subject: [PATCH] Use merge_config --- scene/three_d_scene.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scene/three_d_scene.py b/scene/three_d_scene.py index 60cd3a82..e0525f00 100644 --- a/scene/three_d_scene.py +++ b/scene/three_d_scene.py @@ -174,8 +174,7 @@ class SpecialThreeDScene(ThreeDScene): return axes def get_sphere(self, **kwargs): - config = dict(self.sphere_config) - config.update(kwargs) + config = merge_config([kwargs, self.sphere_config]) return Sphere(**config) def get_default_camera_position(self):