Skip to content

Commit

Permalink
Add typing
Browse files Browse the repository at this point in the history
Co-authored-by: Ghostkeeper <[email protected]>
  • Loading branch information
Joeydelarago and Ghostkeeper authored Jan 31, 2022
1 parent 7479aaf commit 7dd4a3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/obj_trimmer.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Removes any rows that are not a face, vertex or vertex texture
"""

def process_obj(input_file, output_file):
def process_obj(input_file: str, output_file: str) -> None:
with open(input_file, "r") as in_obj, open("temp", "w") as temp:
trim_lines(in_obj, temp)

Expand Down

0 comments on commit 7dd4a3b

Please sign in to comment.