Skip to content

Commit bb1534e

Browse files
authored
remove occurrences of from __future__ import print_function (#234)
1 parent 7cfe2f1 commit bb1534e

File tree

4 files changed

+0
-7
lines changed

4 files changed

+0
-7
lines changed

apptools/preferences/preferences.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
""" The default implementation of a node in a preferences hierarchy. """
22

3-
from __future__ import print_function
4-
53
# Standard library imports.
64
import logging
75
import threading

apptools/preferences/scoped_preferences.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
""" A preferences node that adds the notion of preferences scopes. """
22

3-
from __future__ import print_function
4-
53
# Standard library imports.
64
from os.path import join
75

apptools/preferences/tests/py_config_file.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
""" A Python based configuration file with hierarchical sections. """
2-
from __future__ import print_function
32

43

54
class PyConfigFile(dict):

apptools/preferences/ui/preferences_node.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
# ------------------------------------------------------------------------------
1414
""" Abstract base class for a node in a preferences dialog. """
1515

16-
from __future__ import print_function
17-
1816
# Enthought library imports.
1917
from traits.api import Delegate, Instance
2018

0 commit comments

Comments
 (0)