Skip to content

Commit

Permalink
autopep8 action fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
feliwir authored and Tarcontar committed Dec 25, 2021
1 parent e21ccbe commit 04345a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io_mesh_w3d/common/utils/material_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 04345a4

Please sign in to comment.