Open
Description
The analyser erroneously thinks the module is imported twice
The specific case is within a try
/except ImportError
to handle older Python versions. These errors should not trigger if they are part of the same try/except block.
try: # pragma: no cover
from collections import abc
except ImportError: # pragma: no cover
import collections as abc