Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ughuuu committed Oct 22, 2024
1 parent 96d4a8d commit 0af2939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion header_matcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def match_headers(mapping1, mapping2):
# Load the two header mappings
with open("output_header_mapping_godot.json", "r") as file:
mapping_godot = json.load(file)
file_types_mapping_godot_cpp_gen = map_header_files(os.getcwd() / "gen" / "include")
file_types_mapping_godot_cpp_gen = map_header_files(os.path.join(os.getcwd(), "gen", "include"))
matches = match_headers(file_types_mapping_godot_cpp_gen, mapping_godot)

# Optionally, you can save the matches to a file
Expand Down

0 comments on commit 0af2939

Please sign in to comment.