weirdAAL icon indicating copy to clipboard operation
weirdAAL copied to clipboard

ImportError: cannot import name 'Iterable' from 'collections'

Open Dur4ndal opened this issue 11 months ago • 1 comments

Issue: Cannot import name 'Iterable' from 'collections' (/usr/lib/python3.11/collections/init.py)

Fix: Iterable was removed from collections in Python 3.10. As a consequence, when "from tabulate import tabulate", Iterable isn't correctly imported, so change this line to from collections.abc import Iterable.

Dur4ndal avatar Mar 30 '24 19:03 Dur4ndal