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):