--- a/src/eric7/DebugClients/Python/PyProfile.py Fri Nov 04 13:46:31 2022 +0100 +++ b/src/eric7/DebugClients/Python/PyProfile.py Fri Nov 04 13:52:26 2022 +0100 @@ -6,12 +6,12 @@ Module defining additions to the standard Python profile.py. """ +import atexit +import contextlib +import marshal import os -import marshal +import pickle # secok import profile -import atexit -import pickle # secok -import contextlib class PyProfile(profile.Profile):