Skip to content

Commit

Permalink
Avoid noisy but harmless ROOT message during podio builds
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Sep 21, 2023
1 parent cbfcaef commit 385be83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/podio/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
import os
import ROOT

ROOT.gSystem.Load("libTestDataModelDict.so") # noqa: E402
if ROOT.gSystem.DynamicPathName("libTestDataModelDict.so", True): # noqa: E402
ROOT.gSystem.Load("libTestDataModelDict.so") # noqa: E402
from ROOT import ExampleHitCollection, ExampleClusterCollection # noqa: E402 # pylint: disable=wrong-import-position

from podio import Frame # pylint: disable=wrong-import-position
Expand Down

0 comments on commit 385be83

Please sign in to comment.