Skip to content

Commit

Permalink
refactor: remove obsolete __future__ imports in python (#3141)
Browse files Browse the repository at this point in the history
  • Loading branch information
AJPfleger authored Apr 25, 2024
1 parent 609e3e9 commit ee8bec9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions CI/check_include_guards.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#!/usr/bin/env python3
from __future__ import print_function

import argparse
import os
from glob import glob
Expand Down
2 changes: 0 additions & 2 deletions CI/fix_pragma.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#!/usr/bin/env python3
from __future__ import print_function

import argparse
import os
from glob import glob
Expand Down
10 changes: 6 additions & 4 deletions Examples/Scripts/Detectors/TGeoDetector/tgeo-response2json.py
Original file line number Diff line number Diff line change
@@ -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


Expand Down

0 comments on commit ee8bec9

Please sign in to comment.