summaryrefslogtreecommitdiff
path: root/modules/tools/python
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tools/python')
-rwxr-xr-xmodules/tools/python/c_generate_iface.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/modules/tools/python/c_generate_iface.py b/modules/tools/python/c_generate_iface.py
deleted file mode 100755
index d234482..0000000
--- a/modules/tools/python/c_generate_iface.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python3
-
-import argparse;
-import jinja2;
-
-
-def parse_args():
- parser = argparse.ArgumentParser(
- description = "Generates bindings for the Interface schema"
- );
- parser.add_argument(
- '-t', '--template',
- required=True,
- help = "Path to the template directory"
- );
-
- return parser.parse_args();
-
-def main():
- return 0;
-
-if __name__ == "__main__":
- rc = main();
- exit(rc);