From eacc460970507ce8816e8a2e0a9a7b30d0a600e8 Mon Sep 17 00:00:00 2001 From: Victor Schwan Date: Wed, 6 Nov 2024 19:37:28 +0100 Subject: [PATCH] Revert "make ruff import sorting happy" This reverts commit df74ff477b17e1b7fa6329ff3ae051bcbb13fef8. --- python/podio/root_io.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/python/podio/root_io.py b/python/podio/root_io.py index efb0405ce..d2cd8a23e 100644 --- a/python/podio/root_io.py +++ b/python/podio/root_io.py @@ -8,12 +8,8 @@ gSystem.Load("libpodioRootIO") # noqa: E402 from ROOT import podio # noqa: E402 # pylint: disable=wrong-import-position -from podio.base_reader import ( # pylint: disable=wrong-import-position # noqa: E402 - BaseReaderMixin, -) -from podio.base_writer import ( # pylint: disable=wrong-import-position # noqa: E402 - BaseWriterMixin, -) +from podio.base_reader import BaseReaderMixin # pylint: disable=wrong-import-position # noqa: E402 +from podio.base_writer import BaseWriterMixin # pylint: disable=wrong-import-position # noqa: E402 class Reader(BaseReaderMixin):