diff --git a/CI/check_include_guards.py b/CI/check_include_guards.py index 88ccfef92a0..146322b3bda 100755 --- a/CI/check_include_guards.py +++ b/CI/check_include_guards.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -from __future__ import print_function - import argparse import os from glob import glob diff --git a/CI/fix_pragma.py b/CI/fix_pragma.py index 528b1baf169..767601f1f0e 100755 --- a/CI/fix_pragma.py +++ b/CI/fix_pragma.py @@ -1,6 +1,4 @@ #!/usr/bin/env python3 -from __future__ import print_function - import argparse import os from glob import glob diff --git a/Examples/Scripts/Detectors/TGeoDetector/tgeo-response2json.py b/Examples/Scripts/Detectors/TGeoDetector/tgeo-response2json.py index 76dde34a850..a15df63dd4f 100755 --- a/Examples/Scripts/Detectors/TGeoDetector/tgeo-response2json.py +++ b/Examples/Scripts/Detectors/TGeoDetector/tgeo-response2json.py @@ -1,10 +1,12 @@ #!/usr/bin/env python # tgeo-response2json.py - convert TGeo response file options to ACTS v13.0.0 JSON format - -from __future__ import print_function - -import sys, os, re, getopt, json, subprocess +import sys +import os +import re +import getopt +import json +import subprocess from collections import OrderedDict