ports: Remove unneeded future imports.

Signed-off-by: Jeff Epler <jepler@unpythonic.net>
This commit is contained in:
Jeff Epler
2025-09-10 07:39:27 -05:00
committed by Damien George
parent 4f9bc4b71c
commit 36ab1c2640
5 changed files with 0 additions and 9 deletions

View File

@@ -4,8 +4,6 @@
# Do not use this as a reference for new ports. See tools/boardgen.py and e.g.
# ports/stm32/boards/make-pins.py.
from __future__ import print_function
import argparse
import sys
import csv

View File

@@ -4,8 +4,6 @@
# Do not use this as a reference for new ports. See tools/boardgen.py and e.g.
# ports/stm32/boards/make-pins.py.
from __future__ import print_function
import argparse
import sys
import csv

View File

@@ -4,7 +4,6 @@ the CPU frequency to a given value. The algorithm here appears as C code
for the machine.freq() function.
"""
from __future__ import print_function
import re

View File

@@ -4,8 +4,6 @@ extracts relevant peripheral constants, and creates qstrs, mpz's and constants
for the stm module.
"""
from __future__ import print_function
import argparse
import re

View File

@@ -7,8 +7,6 @@
# This is somewhat like frozen modules in python, but allows arbitrary files
# to be used.
from __future__ import print_function
import argparse
import os
import subprocess