diff options
author | Håkon Solbjørg <hlsolbjorg@gmail.com> | 2019-04-01 22:43:27 +0200 |
---|---|---|
committer | Håkon Solbjørg <hlsolbjorg@gmail.com> | 2019-04-02 19:56:08 +0200 |
commit | 98e35a3fa02b598d104cde9aafb877006d8065b3 (patch) | |
tree | dcee95cb0847b81a33051683eacb7a5e572bdddd /switches.py | |
parent | 8b2ce44bbe1456088f72d677a48cb230cf0991e1 (diff) |
feat: Add argparse to allow for specifying which labler function to run 🤙
Diffstat (limited to 'switches.py')
-rw-r--r-- | switches.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/switches.py b/switches.py index dbc7ece..d6c80a7 100644 --- a/switches.py +++ b/switches.py @@ -40,6 +40,7 @@ def write_html_to_file(html, outfile="switch_labels.html"): def make_switch_labels(): + print("Generating labels for switches") switches = fetch_gondul_switches() labels = generate_labels(switches) write_html_to_file(labels) |