Skip to content

Commit dcabb85

Browse files
authored
Merge pull request #2 from udhayprakash/pixeebot/drip-2024-01-16-pixee-python/remove-future-imports
Remove deprecated `__future__` imports
2 parents 2ccf769 + c3a66a9 commit dcabb85

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

chaining_method.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
from __future__ import print_function
54

65
class Person(object):
76

iterator.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
66
Implementation of the iterator pattern with a generator"""
77

8-
from __future__ import print_function
9-
108

119
def count_to(count):
1210
"""Counts by word numbers, up to a maximum of five"""

state.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
#!/usr/bin/env python
22
"""Implementation of the state pattern"""
33

4-
# http://ginstrom.com/scribbles/2007/10/08/design-patterns-python-style/
5-
from __future__ import print_function
6-
74

85
class State(object):
96

0 commit comments

Comments
 (0)