diff options
| author | Jeff Epler <jepler@unpythonic.net> | 2025-09-10 07:39:27 -0500 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-09-15 14:54:09 +1000 |
| commit | 36ab1c26400a68c9f8c8c24cce03f487e403c312 (patch) | |
| tree | 16d871171657f1955fa426e4ff8955e5429b20e5 | |
| parent | 4f9bc4b71c55e12805f644a7733bfc21c45742e0 (diff) | |
ports: Remove unneeded future imports.
Signed-off-by: Jeff Epler <jepler@unpythonic.net>
| -rw-r--r-- | ports/cc3200/boards/make-pins.py | 2 | ||||
| -rw-r--r-- | ports/nrf/boards/make-pins.py | 2 | ||||
| -rw-r--r-- | ports/stm32/boards/pllvalues.py | 1 | ||||
| -rw-r--r-- | ports/stm32/make-stmconst.py | 2 | ||||
| -rwxr-xr-x | shared/memzip/make-memzip.py | 2 |
5 files changed, 0 insertions, 9 deletions
diff --git a/ports/cc3200/boards/make-pins.py b/ports/cc3200/boards/make-pins.py index e30c02ce9..0a06805f7 100644 --- a/ports/cc3200/boards/make-pins.py +++ b/ports/cc3200/boards/make-pins.py @@ -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 diff --git a/ports/nrf/boards/make-pins.py b/ports/nrf/boards/make-pins.py index 30da03558..20e89936f 100644 --- a/ports/nrf/boards/make-pins.py +++ b/ports/nrf/boards/make-pins.py @@ -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 diff --git a/ports/stm32/boards/pllvalues.py b/ports/stm32/boards/pllvalues.py index 987b784a6..5558d04c5 100644 --- a/ports/stm32/boards/pllvalues.py +++ b/ports/stm32/boards/pllvalues.py @@ -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 diff --git a/ports/stm32/make-stmconst.py b/ports/stm32/make-stmconst.py index ff84977ad..770033ef5 100644 --- a/ports/stm32/make-stmconst.py +++ b/ports/stm32/make-stmconst.py @@ -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 diff --git a/shared/memzip/make-memzip.py b/shared/memzip/make-memzip.py index 92a5d6168..e406c55a4 100755 --- a/shared/memzip/make-memzip.py +++ b/shared/memzip/make-memzip.py @@ -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 |
