Skip to content

Commit 0d67292

Browse files
committed
Remove __future__ dependency
For anyone still using Python 2.x, please update to 3.x :)
1 parent cf739c2 commit 0d67292

File tree

7 files changed

+0
-7
lines changed

7 files changed

+0
-7
lines changed

examples/ex1_Basic_Readings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
# Example 1
4747
#
4848

49-
from __future__ import print_function
5049
import qwiic_max3010x
5150
import time
5251
import sys

examples/ex2_Presence_Sensing.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
# Example 2
4848
#
4949

50-
from __future__ import print_function
5150
import qwiic_max3010x
5251
import time
5352
import sys

examples/ex3_Temperature_Sense.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
# Example 3
4949
#
5050

51-
from __future__ import print_function
5251
import qwiic_max3010x
5352
import time
5453
import sys

examples/ex4_HeartBeat_Plotter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@
7676
# Example 4
7777
#
7878

79-
from __future__ import print_function
8079
import qwiic_max3010x
8180
import time
8281
import sys

examples/ex5_HeartRate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
# Example 5
5353
#
5454

55-
from __future__ import print_function
5655
import qwiic_max3010x
5756
import time
5857
import sys

examples/ex6_FIFO_Readings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
# Example 6
4949
#
5050

51-
from __future__ import print_function
5251
import qwiic_max3010x
5352
import time
5453
import sys

qwiic_max3010x/qwiic_max3010x.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464
6565
"""
6666
#-----------------------------------------------------------------------------
67-
from __future__ import print_function
6867
import struct
6968
import qwiic_i2c
7069
import time

0 commit comments

Comments
 (0)