Skip to content

Commit

Permalink
Exclude nonexistent entity_types_eia table from docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneselvans committed Dec 2, 2023
1 parent 0c52ab9 commit feedb61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def data_dictionary_metadata_to_rst(app):
"""Export data dictionary metadata to RST for inclusion in the documentation."""
# Create an RST Data Dictionary for the PUDL DB:
print("Exporting PUDL DB data dictionary metadata to RST.")
skip_names = ["datasets", "accumulated_depreciation_ferc1"]
skip_names = ["datasets", "accumulated_depreciation_ferc1", "entity_types_eia"]
names = [name for name in RESOURCE_METADATA if name not in skip_names]
package = Package.from_resource_ids(resource_ids=tuple(sorted(names)))
# Sort fields within each resource by name:
Expand Down

0 comments on commit feedb61

Please sign in to comment.