1
Fork 0
mirror of https://github.com/Steffo99/lihzahrd.git synced 2024-11-21 15:44:24 +00:00

Remove unused slot from ClothingDisplay

This commit is contained in:
Steffo 2020-06-03 15:06:59 +02:00
parent 5600877e45
commit a5dfd2995e
Signed by: steffo
GPG key ID: 896A80F55F7C97F0

View file

@ -5,7 +5,7 @@ from .itemstack import ItemStack
class ClothingDisplay:
"""Data pertaining to an item to display clothing."""
__slots__ = "wearing_items", "wearing_dyes", "display_type"
__slots__ = "wearing_items", "wearing_dyes"
def __init__(self,
wearing_items: typing.List[ItemStack],