diff options
author | Simon Glass <sjg@chromium.org> | 2020-04-17 18:08:54 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-04-26 14:25:21 -0600 |
commit | 83a45187715e719bfe520b9ca0373bd8b5bee8aa (patch) | |
tree | 0f2c22972c29f77ec167c871ef94630befd0345b /tools/dtoc | |
parent | 515ce965d6e4681768fea877c299f4f90426ac65 (diff) | |
download | u-boot-83a45187715e719bfe520b9ca0373bd8b5bee8aa.tar.gz |
patman: Drop references to __future__
We don't need these now that the tools using Python 3. Drop them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/dtoc')
-rwxr-xr-x | tools/dtoc/dtoc.py | 2 | ||||
-rwxr-xr-x | tools/dtoc/test_dtoc.py | 2 | ||||
-rwxr-xr-x | tools/dtoc/test_fdt.py | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/tools/dtoc/dtoc.py b/tools/dtoc/dtoc.py index f31cba900e..8e05b43431 100755 --- a/tools/dtoc/dtoc.py +++ b/tools/dtoc/dtoc.py @@ -25,8 +25,6 @@ options. For more information about the use of this options and tool please see doc/driver-model/of-plat.rst """ -from __future__ import print_function - from optparse import OptionParser import os import sys diff --git a/tools/dtoc/test_dtoc.py b/tools/dtoc/test_dtoc.py index d733b70655..9db97489d4 100755 --- a/tools/dtoc/test_dtoc.py +++ b/tools/dtoc/test_dtoc.py @@ -9,8 +9,6 @@ This includes unit tests for some functions and functional tests for the dtoc tool. """ -from __future__ import print_function - import collections import os import struct diff --git a/tools/dtoc/test_fdt.py b/tools/dtoc/test_fdt.py index 3316757e61..4f39a5589f 100755 --- a/tools/dtoc/test_fdt.py +++ b/tools/dtoc/test_fdt.py @@ -4,8 +4,6 @@ # Written by Simon Glass <sjg@chromium.org> # -from __future__ import print_function - from optparse import OptionParser import glob import os |