Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Pytests
on:
pull_request:
branches:
- main
- master
workflow_dispatch:


Expand Down
2 changes: 1 addition & 1 deletion docs/make_model_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def make_tables(output):
for prop, vals in schema["properties"].items():
if vals.get("internal", False):
continue
description = format_description(vals["description"])
description = format_description(vals.get("description", ""))
title = vals["title"]
type_str = property_types.get(name, {}).get(title)
if type_str is not None and type_str in all_names:
Expand Down
Loading