Skip to content
Snippets Groups Projects
Commit 627c7b3d authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Suppress uproot3 future warnings

parent 0489b6ec
No related branches found
No related tags found
No related merge requests found
Pipeline #16463 passed with warnings
......@@ -2,6 +2,9 @@ from pkg_resources import get_distribution, DistributionNotFound
version = get_distribution(__name__).version
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning) # uproot3
from .offline import OfflineReader
from .online import OnlineReader
from .gseagen import GSGReader
......@@ -14,6 +14,9 @@ Options:
-h --help Show this screen.
"""
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
import uproot3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment