Skip to content

Commit

Permalink
Import from the correct place
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Jan 18, 2024
1 parent 365a825 commit 7abfc83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/podio/frame_iterator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""Module defining the Frame iterator used by the Reader interface"""

# pylint: disable-next=import-error # gbl is a dynamic module from cppyy
from cppyy.gbl import std, bad_function_call
from cppyy.gbl import std
from podio.frame import Frame


Expand Down Expand Up @@ -53,7 +53,7 @@ def __getitem__(self, entry):

try:
frame_data = self._reader.readEntry(self._category, entry)
except bad_function_call:
except std.bad_function_call:
print('Error: Unable to read an entry of the input file. This can happen when the '
'ROOT model dictionaries are not in LD_LIBRARY_PATH. Make sure that LD_LIBRARY_PATH '
'points to the library folder of the installation of podio and also to the library '
Expand Down

0 comments on commit 7abfc83

Please sign in to comment.