Skip to content

Commit ae1bab4

Browse files
committed
Remove __future__ dependency
MicroPython doesn't include __future__ To anyone still using Python 2.x, please switch to Python 3.x :)
1 parent 3f232d2 commit ae1bab4

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

examples/Example1-GetReadings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
# Example 1
4040
#
4141

42-
from __future__ import print_function
4342
import qwiic_soil_moisture_sensor
4443
import time
4544
import sys

examples/Example2-Change_I2C_Address.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
# Example 2
4040
#
4141

42-
from __future__ import print_function
4342
import qwiic_soil_moisture_sensor
4443
import time
4544
import sys

qwiic_soil_moisture_sensor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
New to qwiic? Take a look at the entire [SparkFun qwiic ecosystem](https://www.sparkfun.com/qwiic).
1111
1212
"""
13-
from __future__ import print_function, division
1413

1514
import qwiic_i2c
1615

0 commit comments

Comments
 (0)