diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-06-24 12:20:55 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-06-24 15:43:55 -0500 |
commit | e0d363aad8e2204fe8ca4b6937ef2ad74a7b293b (patch) | |
tree | c8300e4864984e9157ba8502ee019c4cd7226128 /misc/scripts/check_get_file_list.py | |
parent | c414c2b37d0563456a2fe194b16f8c4aa442e865 (diff) | |
download | redot-cpp-e0d363aad8e2204fe8ca4b6937ef2ad74a7b293b.tar.gz |
Integrate `.pre-commit-config.yaml`
Diffstat (limited to 'misc/scripts/check_get_file_list.py')
-rwxr-xr-x | misc/scripts/check_get_file_list.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/scripts/check_get_file_list.py b/misc/scripts/check_get_file_list.py index d536a7a..33bc6b6 100755 --- a/misc/scripts/check_get_file_list.py +++ b/misc/scripts/check_get_file_list.py @@ -1,12 +1,12 @@ #!/usr/bin/env python -import os, sys - +import os +import sys from pathlib import Path sys.path.insert(1, os.path.join(os.path.dirname(__file__), "..", "..")) -from binding_generator import get_file_list, generate_bindings +from binding_generator import generate_bindings, get_file_list api_filepath = "gdextension/extension_api.json" bits = "64" |