diff --git a/chaining_method.py b/chaining_method.py index de9c115d1..72a80c020 100644 --- a/chaining_method.py +++ b/chaining_method.py @@ -1,7 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -from __future__ import print_function class Person(object): diff --git a/iterator.py b/iterator.py index 74d671385..3aa36b8d4 100644 --- a/iterator.py +++ b/iterator.py @@ -5,8 +5,6 @@ Implementation of the iterator pattern with a generator""" -from __future__ import print_function - def count_to(count): """Counts by word numbers, up to a maximum of five""" diff --git a/state.py b/state.py index ef7bfb560..129efd992 100644 --- a/state.py +++ b/state.py @@ -1,9 +1,6 @@ #!/usr/bin/env python """Implementation of the state pattern""" -# http://ginstrom.com/scribbles/2007/10/08/design-patterns-python-style/ -from __future__ import print_function - class State(object):