tools: Remove unneeded future imports.

Signed-off-by: Jeff Epler <jepler@unpythonic.net>
This commit is contained in:
Jeff Epler
2025-09-10 07:37:23 -05:00
committed by Damien George
parent f0c6f16b9e
commit 3c60e0cf21
5 changed files with 0 additions and 8 deletions

View File

@@ -5,8 +5,6 @@
# ;
# This script simply prints the escaped string straight to stdout
from __future__ import print_function
import sys
# Can either be set explicitly, or left blank to auto-detect

View File

@@ -2,8 +2,6 @@
# inserts those values into the template file specified by sys.argv[2],
# printing the result to stdout
from __future__ import print_function
import sys
import re
import string

View File

@@ -24,7 +24,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
from __future__ import print_function
import sys
import os
import subprocess

View File

@@ -25,7 +25,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
from __future__ import print_function
import contextlib
import os
import sys

View File

@@ -11,8 +11,6 @@ See app note AN3156 for a description of the DFU protocol.
See document UM0391 for a description of the DFuse file.
"""
from __future__ import print_function
import argparse
import collections
import inspect