From 224215cd9a9eb6fef5061b34de0a79cb88a890ce Mon Sep 17 00:00:00 2001 From: Paul Houser Date: Mon, 24 Aug 2020 00:53:03 -0700 Subject: [PATCH] install.py --- install.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.py b/install.py index d4fb089..8f956e0 100755 --- a/install.py +++ b/install.py @@ -68,6 +68,10 @@ def print_keys(dictionary): if isinstance(dictionary[key], dict): print_keys(dictionary[key]) +def gen_list_indices(html_file, file_dict): + for key in file_dict: + print(key) + def gen_col_headers(html_file, file_dict): for key in file_dict: html_file.write("
  • \n") @@ -75,6 +79,7 @@ def gen_col_headers(html_file, file_dict): html_file.write(" \n") html_file.write("
  • \n")