Update format2csv.py

This commit is contained in:
Tim Stack 2020-09-29 14:14:43 -07:00 committed by GitHub
parent 7c215f09c6
commit cc6ae5ee2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,8 @@ def main(args):
for key in sorted(format_dict):
value = format_dict[key]
if not isinstance(value, dict):
continue
out.writerow((value['title'], key, value['description']))
if __name__ == "__main__":