From 04345a44cdf456a32d2937dccafb1419919471e5 Mon Sep 17 00:00:00 2001 From: feliwir Date: Sat, 25 Dec 2021 14:40:02 +0000 Subject: [PATCH] autopep8 action fixes --- io_mesh_w3d/common/utils/material_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_mesh_w3d/common/utils/material_export.py b/io_mesh_w3d/common/utils/material_export.py index 5c693060..8d985650 100644 --- a/io_mesh_w3d/common/utils/material_export.py +++ b/io_mesh_w3d/common/utils/material_export.py @@ -11,7 +11,7 @@ def set_texture_extension_to_tga(texture_name): # the engine searches for .tga by default or replaces it with .dds - return texture_name.rsplit('.' , 1)[0] + '.tga' + return texture_name.rsplit('.', 1)[0] + '.tga' def append_texture_if_valid(texture, used_textures):