Skip to content

Commit 8b27d65

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 282d17c commit 8b27d65

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

examples/qwiic_bme280_ex1.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_bme280
4443
import time
4544
import sys

examples/qwiic_bme280_ex4.py

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

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

examples/qwiic_bme280_ex5.py

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

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

qwiic_bme280.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
"""
5959

6060
#-----------------------------------------------------------------------------
61-
from __future__ import print_function
6261
import math
6362
import time
6463
import qwiic_i2c

0 commit comments

Comments
 (0)