From e97b4ac50944ee394c6503b2b0ccd8b05707e00a Mon Sep 17 00:00:00 2001
From: Thomas Mansencal <thomas.mansencal@gmail.com>
Date: Tue, 21 May 2024 20:45:51 +1200
Subject: [PATCH] Removed unneeded string formatting in
 `ocioview.ocioview.utils.py` module.

Signed-off-by: Thomas Mansencal <thomas.mansencal@gmail.com>
---
 src/apps/ocioview/ocioview/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/apps/ocioview/ocioview/utils.py b/src/apps/ocioview/ocioview/utils.py
index eca1767e01..32b46ee925 100644
--- a/src/apps/ocioview/ocioview/utils.py
+++ b/src/apps/ocioview/ocioview/utils.py
@@ -312,7 +312,7 @@ def color_space_to_rgb_colourspace(color_space: str) -> RGB_Colourspace | None:
         color_space,
         XYZ_to_xy(XYZ),
         XYZ_to_xy(XYZ_w),
-        f"{color_space}",
+        color_space,
         use_derived_matrix_RGB_to_XYZ=True,
         use_derived_matrix_XYZ_to_RGB=True,
     )