Skip to content

move imports to satisfy pylint #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/mlx90640_camtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
import math
import time
import argparse
import board
import busio
from PIL import Image
import pygame
import board
import busio

import adafruit_mlx90640

Expand Down
2 changes: 1 addition & 1 deletion examples/mlx90640_pil.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
It will not work on microcontrollers running CircuitPython!"""

import math
from PIL import Image
import board
import adafruit_mlx90640
from PIL import Image

FILENAME = "mlx.jpg"

Expand Down
2 changes: 1 addition & 1 deletion examples/mlx90640_pygamer.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import time
import board
import busio
import adafruit_mlx90640
import displayio
import terminalio
from adafruit_display_text.label import Label
from simpleio import map_range
import adafruit_mlx90640

number_of_colors = 64 # Number of color in the gradian
last_color = number_of_colors - 1 # Last color in palette
Expand Down