SethBling / cbscript

CBScript for Minecraft
1.14k stars 27 forks source link

Switch Block Collections Attribute Error #20

Open DanJHaas opened 6 months ago

DanJHaas commented 6 months ago

due to the project being updated to use python 3.11 there was an issue with importing the Collections module in the block_types/switch_block.py file, causing AttributeError: module 'collections' has no attribute 'Iterable'

I was able to fix it by replacing import collections with import collections.abc as collections

I have not found any other instances of this being an issue yet but i thought i would bring it to your attention.

thanks!