diff options
| author | Andre Weissflog <floooh@gmail.com> | 2022-07-19 20:36:51 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2022-07-19 20:36:51 +0200 |
| commit | 9d42b33edeae13a4b2ffe975176d70c7a1aaa906 (patch) | |
| tree | 66087b58398c920cd3cc395196b7e4cc3bf71e18 /bindgen/gen_zig.py | |
| parent | 02222079756e94b10a24474dfd2566c3eafed428 (diff) | |
gen_zig.py: minor code cleanup
Diffstat (limited to 'bindgen/gen_zig.py')
| -rw-r--r-- | bindgen/gen_zig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindgen/gen_zig.py b/bindgen/gen_zig.py index d14145f0..4132fb1c 100644 --- a/bindgen/gen_zig.py +++ b/bindgen/gen_zig.py @@ -483,7 +483,7 @@ def gen_imports(inp, dep_prefixes): for dep_prefix in dep_prefixes: dep_module_name = module_names[dep_prefix] l(f'const {dep_prefix[:-1]} = @import("{dep_module_name}.zig");') - l('') + l('') def gen_helpers(inp): l('// helper function to convert a C string to a Zig string slice') |