Skip to content

Commit

Permalink
fix: pin structure sets
Browse files Browse the repository at this point in the history
  • Loading branch information
vberlier committed Feb 22, 2022
1 parent 240288f commit 424b03e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions beet/library/data_pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@ class DataPackNamespace(Namespace):
noise_settings: NamespacePin[NoiseSettings] = NamespacePin(NoiseSettings)
processor_lists: NamespacePin[ProcessorList] = NamespacePin(ProcessorList)
template_pools: NamespacePin[TemplatePool] = NamespacePin(TemplatePool)
structure_sets: NamespacePin[StructureSet] = NamespacePin(StructureSet)
item_modifiers: NamespacePin[ItemModifier] = NamespacePin(ItemModifier)
# fmt: on

Expand Down Expand Up @@ -432,5 +433,6 @@ class DataPack(Pack[DataPackNamespace]):
noise_settings: NamespaceProxyDescriptor[NoiseSettings] = NamespaceProxyDescriptor(NoiseSettings)
processor_lists: NamespaceProxyDescriptor[ProcessorList] = NamespaceProxyDescriptor(ProcessorList)
template_pools: NamespaceProxyDescriptor[TemplatePool] = NamespaceProxyDescriptor(TemplatePool)
structure_sets: NamespaceProxyDescriptor[StructureSet] = NamespaceProxyDescriptor(StructureSet)
item_modifiers: NamespaceProxyDescriptor[ItemModifier] = NamespaceProxyDescriptor(ItemModifier)
# fmt: on

0 comments on commit 424b03e

Please sign in to comment.