Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
jposada202020 committed Jul 23, 2023
1 parent 5b15d79 commit 3a37606
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class-rgx=[A-Z_][a-zA-Z0-9_]+$
const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
docstring-min-length=-1
function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
good-names=r,g,b,w,i,j,k,n,x,y,z,ex,ok,Run,_,cs,TVOC,ubar,rx,ry,x0,y0,y1,x1,ulogging,ufillbetween,ucartesian,y2,
good-names=r,g,b,w,i,j,k,n,x,y,z,ex,ok,Run,_,cs,TVOC,ubar,rx,ry,x0,y0,y1,x1,ulogging,ufillbetween,ucartesian,y2,umap
include-naming-hint=no
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
Expand Down Expand Up @@ -110,13 +110,13 @@ valid-metaclass-classmethod-first-arg=mcs
max-args=15
max-attributes=30
max-bool-expr=5
max-branches=15
max-branches=20
max-locals=25
max-parents=7
max-public-methods=20
max-returns=6
max-statements=60
min-public-methods=1
min-public-methods=0

[EXCEPTIONS]
overgeneral-exceptions=Exception
4 changes: 2 additions & 2 deletions circuitpython_uplot/umap.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ def __init__(
deltax = plot._newxmin
deltay = plot._newymax
color = 0
for j in range(box_iny):
for i in range(box_inx):
for _ in range(box_iny):
for _ in range(box_inx):
plot.append(
Rectangle(
pixel_shader=palette,
Expand Down
4 changes: 2 additions & 2 deletions examples/uplot_logging_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
# - adafruit_bitmap_font
# - CircuitPython_TABLE (from https://github.com/jposada202020/CircuitPython_TABLE)

import time
import displayio
import board
import time
from table import Table
from circuitpython_uplot.uplot import Uplot, color
from circuitpython_uplot.ulogging import ulogging
from table import Table

# Create a display object
display = board.DISPLAY
Expand Down

0 comments on commit 3a37606

Please sign in to comment.