--- a/src/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py Fri Nov 04 13:46:31 2022 +0100 +++ b/src/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py Fri Nov 04 13:52:26 2022 +0100 @@ -7,16 +7,16 @@ Module implementing the syntax check for Python 3. """ +import ast +import contextlib +import multiprocessing import queue -import ast import re import traceback -import multiprocessing -import contextlib with contextlib.suppress(ImportError): from pyflakes.checker import Checker - from pyflakes.messages import ImportStarUsed, ImportStarUsage + from pyflakes.messages import ImportStarUsage, ImportStarUsed VcsConflictMarkerRegExpList = ( re.compile(