Remove unused files, set up for RTD

This commit is contained in:
Patrick Robertson
2025-02-27 21:23:38 +00:00
parent 15da907e81
commit 1141c00e9a
12 changed files with 655 additions and 283 deletions

View File

@@ -23,7 +23,7 @@ for module in available_modules:
all_modules_ordered_by_type = sorted(available_modules, key=lambda x: (MODULE_TYPES.index(x.type[0]), not x.requires_setup))
output_schame = {
output_schema = {
'modules': dict((module.name,
{
'name': module.name,
@@ -40,4 +40,4 @@ output_schame = {
current_file_dir = os.path.dirname(os.path.abspath(__file__))
output_file = os.path.join(current_file_dir, 'settings/src/schema.json')
with open(output_file, 'w') as file:
json.dump(output_schame, file, indent=4, cls=SchemaEncoder)
json.dump(output_schema, file, indent=4, cls=SchemaEncoder)