comparison configmix/config.py @ 482:8b8ffb74d452

Remove unneeded __future__ import because we are on Python 2.6+
author Franz Glasner <f.glasner@feldmann-mg.com>
date Fri, 17 Dec 2021 13:53:25 +0100
parents e3990ec55f2a
children 38e4be1882e3
comparison
equal deleted inserted replaced
481:e3990ec55f2a 482:8b8ffb74d452
6 """The unified configuration dictionary with attribute support or 6 """The unified configuration dictionary with attribute support or
7 variable substitution. 7 variable substitution.
8 8
9 """ 9 """
10 10
11 from __future__ import division, absolute_import, print_function, generators 11 from __future__ import division, absolute_import, print_function
12 12
13 13
14 __all__ = ["Configuration"] 14 __all__ = ["Configuration"]
15 15
16 16