Skip to content

Commit bf44d33

Browse files
authored
Merge pull request #21 from adafruit/fix-pylint
move imports to satisfy pylint
2 parents fb82a79 + 4ff6ea8 commit bf44d33

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/mlx90640_camtest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
import math
77
import time
88
import argparse
9-
import board
10-
import busio
119
from PIL import Image
1210
import pygame
11+
import board
12+
import busio
1313

1414
import adafruit_mlx90640
1515

examples/mlx90640_pil.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
It will not work on microcontrollers running CircuitPython!"""
33

44
import math
5+
from PIL import Image
56
import board
67
import adafruit_mlx90640
7-
from PIL import Image
88

99
FILENAME = "mlx.jpg"
1010

examples/mlx90640_pygamer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import time
22
import board
33
import busio
4-
import adafruit_mlx90640
54
import displayio
65
import terminalio
76
from adafruit_display_text.label import Label
87
from simpleio import map_range
8+
import adafruit_mlx90640
99

1010
number_of_colors = 64 # Number of color in the gradian
1111
last_color = number_of_colors - 1 # Last color in palette

0 commit comments

Comments
 (0)