From a4b7a48f71a059c7410ee3e97aa682361cf22799 Mon Sep 17 00:00:00 2001
From: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Date: Thu, 16 Jul 2020 04:17:38 +0200
Subject: python: Remove unnecessary 'from __future__ import'

All of the removed `from __future__ import` were needed in older
versions of Python (mostly 2.5.x and below) but later became mandatory
in most versions of Python 3 hence are not necessary anymore.

More specifically, according to __future__.py[1]:
- unicode_literals is part of Python since versions 2.6.0 and 3.0.0;
- print_function is part of Python since versions 2.6.0 and 3.0.0;
- absolute_import is part of Python since versions 2.5.0 and 3.0.0;
- division is part of Python since versions 2.2.0 and 3.0.0;

Get rid of those unnecessary imports to slightly clean up the codebase.

[1] https://github.com/python/cpython/blob/master/Lib/__future__.py
---
 .../templates/gr-newmod/docs/doxygen/doxyxml/generated/compound.py      | 2 --
 1 file changed, 2 deletions(-)

(limited to 'gr-utils/modtool/templates/gr-newmod/docs/doxygen/doxyxml/generated/compound.py')

diff --git a/gr-utils/modtool/templates/gr-newmod/docs/doxygen/doxyxml/generated/compound.py b/gr-utils/modtool/templates/gr-newmod/docs/doxygen/doxyxml/generated/compound.py
index acfa0dd5c6..d0b164ea43 100644
--- a/gr-utils/modtool/templates/gr-newmod/docs/doxygen/doxyxml/generated/compound.py
+++ b/gr-utils/modtool/templates/gr-newmod/docs/doxygen/doxyxml/generated/compound.py
@@ -3,8 +3,6 @@
 """
 Generated Mon Feb  9 19:08:05 2009 by generateDS.py.
 """
-from __future__ import absolute_import
-from __future__ import unicode_literals
 
 
 from xml.dom import minidom
-- 
cgit v1.2.3