Skip to content

Commit 73cbdbd

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 a58cf68 commit 73cbdbd

9 files changed

+0
-9
lines changed

examples/qwiic_alphanumeric_ex01_print_string.py

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

43-
from __future__ import print_function
4443
import qwiic_alphanumeric
4544
import time
4645
import sys

examples/qwiic_alphanumeric_ex02_turn_on_one_segment.py

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

43-
from __future__ import print_function
4443
import qwiic_alphanumeric
4544
import time
4645
import sys

examples/qwiic_alphanumeric_ex03_print_char.py

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

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

examples/qwiic_alphanumeric_ex04_set_brightness.py

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

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

examples/qwiic_alphanumeric_ex05_set_blink_rate.py

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

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

examples/qwiic_alphanumeric_ex06_colon_and_decimal.py

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

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

examples/qwiic_alphanumeric_ex07_unknown_char.py

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

43-
from __future__ import print_function
4443
import qwiic_alphanumeric
4544
import time
4645
import sys

examples/qwiic_alphanumeric_ex08_multi_display.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
#=======================================================================
4141
# Example 8
4242

43-
from __future__ import print_function
4443
import qwiic_alphanumeric
4544
import time
4645
import sys

examples/qwiic_alphanumeric_ex09_scrolling_string.py

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

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

0 commit comments

Comments
 (0)