From 8e9931817850f9204b161d4607eff4a2ffcba0f8 Mon Sep 17 00:00:00 2001 From: Ting-Chia Chiang Date: Wed, 11 Sep 2024 14:59:56 +0200 Subject: [PATCH] Reformat the strings with double quotes --- .../simulation/scene/geometry/textures/_map_type.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simulation/revolve2/simulation/scene/geometry/textures/_map_type.py b/simulation/revolve2/simulation/scene/geometry/textures/_map_type.py index 9aa02b685..ba3af963b 100644 --- a/simulation/revolve2/simulation/scene/geometry/textures/_map_type.py +++ b/simulation/revolve2/simulation/scene/geometry/textures/_map_type.py @@ -9,6 +9,6 @@ class MapType(Enum): - "CUBE": Wraps the texture around a cube object. - "SKYBOX": Like "cube" but maps onto the inside of an object. """ - MAP2D = '2d' - CUBE = 'cube' - SKYBOX = 'skybox' + MAP2D = "2d" + CUBE = "cube" + SKYBOX = "skybox"