Skip to content

Commit

Permalink
make ruff import sorting happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor-Schwan committed Nov 6, 2024
1 parent a9dd8ee commit df74ff4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions python/podio/root_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@
gSystem.Load("libpodioRootIO") # noqa: E402
from ROOT import podio # noqa: E402 # pylint: disable=wrong-import-position

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


def convert_to_str_paths(filenames):
Expand Down

0 comments on commit df74ff4

Please sign in to comment.