diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d54c593 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Justin Myers for Adafruit Industries +# +# SPDX-License-Identifier: Unlicense + +* text eol=lf diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 70ade69..ff19dde 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,42 +1,21 @@ -# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò +# SPDX-FileCopyrightText: 2024 Justin Myers for Adafruit Industries # # SPDX-License-Identifier: Unlicense repos: - - repo: https://github.com/python/black - rev: 23.3.0 - hooks: - - id: black - - repo: https://github.com/fsfe/reuse-tool - rev: v1.1.2 - hooks: - - id: reuse - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - - repo: https://github.com/pycqa/pylint - rev: v2.17.4 + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.3.4 hooks: - - id: pylint - name: pylint (library code) - types: [python] - args: - - --disable=consider-using-f-string - exclude: "^(docs/|examples/|tests/|setup.py$)" - - id: pylint - name: pylint (example code) - description: Run pylint rules on "examples/*.py" files - types: [python] - files: "^examples/" - args: - - --disable=missing-docstring,invalid-name,consider-using-f-string,duplicate-code - - id: pylint - name: pylint (test code) - description: Run pylint rules on "tests/*.py" files - types: [python] - files: "^tests/" - args: - - --disable=missing-docstring,consider-using-f-string,duplicate-code + - id: ruff-format + - id: ruff + args: ["--fix"] + - repo: https://github.com/fsfe/reuse-tool + rev: v3.0.1 + hooks: + - id: reuse diff --git a/.pylintrc b/.pylintrc deleted file mode 100644 index f945e92..0000000 --- a/.pylintrc +++ /dev/null @@ -1,399 +0,0 @@ -# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries -# -# SPDX-License-Identifier: Unlicense - -[MASTER] - -# A comma-separated list of package or module names from where C extensions may -# be loaded. Extensions are loading into the active Python interpreter and may -# run arbitrary code -extension-pkg-whitelist= - -# Add files or directories to the ignore-list. They should be base names, not -# paths. -ignore=CVS - -# Add files or directories matching the regex patterns to the ignore-list. The -# regex matches against base names, not paths. -ignore-patterns= - -# Python code to execute, usually for sys.path manipulation such as -# pygtk.require(). -#init-hook= - -# Use multiple processes to speed up Pylint. -jobs=1 - -# List of plugins (as comma separated values of python modules names) to load, -# usually to register additional checkers. -load-plugins=pylint.extensions.no_self_use - -# Pickle collected data for later comparisons. -persistent=yes - -# Specify a configuration file. -#rcfile= - -# Allow loading of arbitrary C extensions. Extensions are imported into the -# active Python interpreter and may run arbitrary code. -unsafe-load-any-extension=no - - -[MESSAGES CONTROL] - -# Only show warnings with the listed confidence levels. Leave empty to show -# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED -confidence= - -# Disable the message, report, category or checker with the given id(s). You -# can either give multiple identifiers separated by comma (,) or put this -# option multiple times (only on the command line, not in the configuration -# file where it should appear only once).You can also use "--disable=all" to -# disable everything first and then reenable specific checks. For example, if -# you want to run only the similarities checker, you can use "--disable=all -# --enable=similarities". If you want to run only the classes checker, but have -# no Warning level messages displayed, use"--disable=all --enable=classes -# --disable=W" -# disable=import-error,raw-checker-failed,bad-inline-option,locally-disabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,deprecated-str-translate-call -disable=raw-checker-failed,bad-inline-option,locally-disabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,import-error,pointless-string-statement,unspecified-encoding - -# Enable the message, report, category or checker with the given id(s). You can -# either give multiple identifier separated by comma (,) or put this option -# multiple time (only on the command line, not in the configuration file where -# it should appear only once). See also the "--disable" option for examples. -enable= - - -[REPORTS] - -# Python expression which should return a note less than 10 (10 is the highest -# note). You have access to the variables errors warning, statement which -# respectively contain the number of errors / warnings messages and the total -# number of statements analyzed. This is used by the global evaluation report -# (RP0004). -evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) - -# Template used to display messages. This is a python new-style format string -# used to format the message information. See doc for all details -#msg-template= - -# Set the output format. Available formats are text, parseable, colorized, json -# and msvs (visual studio).You can also give a reporter class, eg -# mypackage.mymodule.MyReporterClass. -output-format=text - -# Tells whether to display a full report or only the messages -reports=no - -# Activate the evaluation score. -score=yes - - -[REFACTORING] - -# Maximum number of nested blocks for function / method body -max-nested-blocks=5 - - -[LOGGING] - -# Logging modules to check that the string format arguments are in logging -# function parameter format -logging-modules=logging - - -[SPELLING] - -# Spelling dictionary name. Available dictionaries: none. To make it working -# install python-enchant package. -spelling-dict= - -# List of comma separated words that should not be checked. -spelling-ignore-words= - -# A path to a file that contains private dictionary; one word per line. -spelling-private-dict-file= - -# Tells whether to store unknown words to indicated private dictionary in -# --spelling-private-dict-file option instead of raising a message. -spelling-store-unknown-words=no - - -[MISCELLANEOUS] - -# List of note tags to take in consideration, separated by a comma. -# notes=FIXME,XXX,TODO -notes=FIXME,XXX - - -[TYPECHECK] - -# List of decorators that produce context managers, such as -# contextlib.contextmanager. Add to this list to register other decorators that -# produce valid context managers. -contextmanager-decorators=contextlib.contextmanager - -# List of members which are set dynamically and missed by pylint inference -# system, and so shouldn't trigger E1101 when accessed. Python regular -# expressions are accepted. -generated-members= - -# Tells whether missing members accessed in mixin class should be ignored. A -# mixin class is detected if its name ends with "mixin" (case insensitive). -ignore-mixin-members=yes - -# This flag controls whether pylint should warn about no-member and similar -# checks whenever an opaque object is returned when inferring. The inference -# can return multiple potential results while evaluating a Python object, but -# some branches might not be evaluated, which results in partial inference. In -# that case, it might be useful to still emit no-member and other checks for -# the rest of the inferred objects. -ignore-on-opaque-inference=yes - -# List of class names for which member attributes should not be checked (useful -# for classes with dynamically set attributes). This supports the use of -# qualified names. -ignored-classes=optparse.Values,thread._local,_thread._local - -# List of module names for which member attributes should not be checked -# (useful for modules/projects where namespaces are manipulated during runtime -# and thus existing member attributes cannot be deduced by static analysis. It -# supports qualified module names, as well as Unix pattern matching. -ignored-modules=board - -# Show a hint with possible names when a member name was not found. The aspect -# of finding the hint is based on edit distance. -missing-member-hint=yes - -# The minimum edit distance a name should have in order to be considered a -# similar match for a missing member name. -missing-member-hint-distance=1 - -# The total number of similar names that should be taken in consideration when -# showing a hint for a missing member. -missing-member-max-choices=1 - - -[VARIABLES] - -# List of additional names supposed to be defined in builtins. Remember that -# you should avoid to define new builtins when possible. -additional-builtins= - -# Tells whether unused global variables should be treated as a violation. -allow-global-unused-variables=yes - -# List of strings which can identify a callback function by name. A callback -# name must start or end with one of those strings. -callbacks=cb_,_cb - -# A regular expression matching the name of dummy variables (i.e. expectedly -# not used). -dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ - -# Argument names that match this expression will be ignored. Default to name -# with leading underscore -ignored-argument-names=_.*|^ignored_|^unused_ - -# Tells whether we should check for unused import in __init__ files. -init-import=no - -# List of qualified module names which can have objects that can redefine -# builtins. -redefining-builtins-modules=six.moves,future.builtins - - -[FORMAT] - -# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. -# expected-line-ending-format= -expected-line-ending-format=LF - -# Regexp for a line that is allowed to be longer than the limit. -ignore-long-lines=^\s*(# )??$ - -# Number of spaces of indent required inside a hanging or continued line. -indent-after-paren=4 - -# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 -# tab). -indent-string=' ' - -# Maximum number of characters on a single line. -max-line-length=100 - -# Maximum number of lines in a module -max-module-lines=1000 - -# Allow the body of a class to be on the same line as the declaration if body -# contains single statement. -single-line-class-stmt=no - -# Allow the body of an if to be on the same line as the test if there is no -# else. -single-line-if-stmt=no - - -[SIMILARITIES] - -# Ignore comments when computing similarities. -ignore-comments=yes - -# Ignore docstrings when computing similarities. -ignore-docstrings=yes - -# Ignore imports when computing similarities. -ignore-imports=yes - -# Minimum lines number of a similarity. -min-similarity-lines=12 - - -[BASIC] - -# Regular expression matching correct argument names -argument-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ - -# Regular expression matching correct attribute names -attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ - -# Bad variable names which should always be refused, separated by a comma -bad-names=foo,bar,baz,toto,tutu,tata - -# Regular expression matching correct class attribute names -class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ - -# Regular expression matching correct class names -# class-rgx=[A-Z_][a-zA-Z0-9]+$ -class-rgx=[A-Z_][a-zA-Z0-9_]+$ - -# Regular expression matching correct constant names -const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ - -# Minimum line length for functions/classes that require docstrings, shorter -# ones are exempt. -docstring-min-length=-1 - -# Regular expression matching correct function names -function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ - -# Good variable names which should always be accepted, separated by a comma -# good-names=i,j,k,ex,Run,_ -good-names=r,g,b,w,i,j,k,n,x,y,z,ex,ok,Run,_ - -# Include a hint for the correct naming format with invalid-name -include-naming-hint=no - -# Regular expression matching correct inline iteration names -inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ - -# Regular expression matching correct method names -method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ - -# Regular expression matching correct module names -module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ - -# Colon-delimited sets of names that determine each other's naming style when -# the name regexes allow several styles. -name-group= - -# Regular expression which should only match function or class names that do -# not require a docstring. -no-docstring-rgx=^_ - -# List of decorators that produce properties, such as abc.abstractproperty. Add -# to this list to register other decorators that produce valid properties. -property-classes=abc.abstractproperty - -# Regular expression matching correct variable names -variable-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ - - -[IMPORTS] - -# Allow wildcard imports from modules that define __all__. -allow-wildcard-with-all=no - -# Analyse import fallback blocks. This can be used to support both Python 2 and -# 3 compatible code, which means that the block might have code that exists -# only in one or another interpreter, leading to false positives when analysed. -analyse-fallback-blocks=no - -# Deprecated modules which should not be used, separated by a comma -deprecated-modules=optparse,tkinter.tix - -# Create a graph of external dependencies in the given file (report RP0402 must -# not be disabled) -ext-import-graph= - -# Create a graph of every (i.e. internal and external) dependencies in the -# given file (report RP0402 must not be disabled) -import-graph= - -# Create a graph of internal dependencies in the given file (report RP0402 must -# not be disabled) -int-import-graph= - -# Force import order to recognize a module as part of the standard -# compatibility libraries. -known-standard-library= - -# Force import order to recognize a module as part of a third party library. -known-third-party=enchant - - -[CLASSES] - -# List of method names used to declare (i.e. assign) instance attributes. -defining-attr-methods=__init__,__new__,setUp - -# List of member names, which should be excluded from the protected access -# warning. -exclude-protected=_asdict,_fields,_replace,_source,_make - -# List of valid names for the first argument in a class method. -valid-classmethod-first-arg=cls - -# List of valid names for the first argument in a metaclass class method. -valid-metaclass-classmethod-first-arg=mcs - - -[DESIGN] - -# Maximum number of arguments for function / method -max-args=5 - -# Maximum number of attributes for a class (see R0902). -# max-attributes=7 -max-attributes=11 - -# Maximum number of boolean expressions in a if statement -max-bool-expr=5 - -# Maximum number of branch for function / method body -max-branches=12 - -# Maximum number of locals for function / method body -max-locals=15 - -# Maximum number of parents for a class (see R0901). -max-parents=7 - -# Maximum number of public methods for a class (see R0904). -max-public-methods=20 - -# Maximum number of return / yield for function / method body -max-returns=6 - -# Maximum number of statements in function / method body -max-statements=50 - -# Minimum number of public methods for a class (see R0903). -min-public-methods=1 - - -[EXCEPTIONS] - -# Exceptions that will emit a warning when being caught. Defaults to -# "Exception" -overgeneral-exceptions=builtins.Exception diff --git a/README.rst b/README.rst index af6a199..c9cc88b 100644 --- a/README.rst +++ b/README.rst @@ -17,9 +17,9 @@ Introduction :alt: Build Status -.. image:: https://img.shields.io/badge/code%20style-black-000000.svg - :target: https://github.com/psf/black - :alt: Code Style: Black +.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json + :target: https://github.com/astral-sh/ruff + :alt: Code Style: Ruff Library for the Adafruit PyCamera diff --git a/adafruit_pycamera/__init__.py b/adafruit_pycamera/__init__.py index 45dcb3c..a71e33b 100644 --- a/adafruit_pycamera/__init__.py +++ b/adafruit_pycamera/__init__.py @@ -4,7 +4,6 @@ # SPDX-License-Identifier: MIT """Library for the Adafruit PyCamera with OV5640 autofocus module""" -# pylint: disable=too-many-lines import gc import os import struct @@ -19,10 +18,10 @@ import adafruit_lis3dh import bitmaptools import board -import displayio -import fourwire import busdisplay +import displayio import espcamera +import fourwire import microcontroller import neopixel import pwmio @@ -80,7 +79,7 @@ _NVM_TIMELAPSE_SUBMODE = const(5) -class PyCameraBase: # pylint: disable=too-many-instance-attributes,too-many-public-methods +class PyCameraBase: """Base class for PyCamera hardware""" """Wrapper class for the PyCamera hardware with lots of smarts""" @@ -200,14 +199,14 @@ class PyCameraBase: # pylint: disable=too-many-instance-attributes,too-many-pub _INIT_SEQUENCE = ( b"\x01\x80\x78" # _SWRESET and Delay 120ms b"\x11\x80\x05" # _SLPOUT and Delay 5ms - b"\x3A\x01\x55" # _COLMOD + b"\x3a\x01\x55" # _COLMOD b"\x21\x00" # _INVON Hack b"\x13\x00" # _NORON - b"\x36\x01\xA0" # _MADCTL + b"\x36\x01\xa0" # _MADCTL b"\x29\x80\x05" # _DISPON and Delay 5ms ) - def __init__(self) -> None: # pylint: disable=too-many-statements + def __init__(self) -> None: # noqa: PLR0915 Too many statements displayio.release_displays() self._i2c = board.I2C() self._spi = board.SPI() @@ -275,7 +274,7 @@ def make_debounced_expander_pin(pin_no): pin.switch_to_input() return Debouncer(make_expander_input(pin_no)) - self.up = make_debounced_expander_pin(_AW_UP) # pylint: disable=invalid-name + self.up = make_debounced_expander_pin(_AW_UP) self.left = make_debounced_expander_pin(_AW_LEFT) self.right = make_debounced_expander_pin(_AW_RIGHT) self.down = make_debounced_expander_pin(_AW_DOWN) @@ -507,7 +506,7 @@ def autofocus_status(self): """Read the camera autofocus status register""" return self.read_camera_register(_OV5640_CMD_FW_STATUS) - def _send_autofocus_command(self, command, msg): # pylint: disable=unused-argument + def _send_autofocus_command(self, command, msg): self.write_camera_register(_OV5640_CMD_ACK, 0x01) # clear command ack self.write_camera_register(_OV5640_CMD_MAIN, command) # send command for _ in range(100): @@ -882,10 +881,9 @@ def overlay(self) -> str: @overlay.setter def overlay(self, new_overlay_file: str) -> None: - # pylint: disable=import-outside-toplevel - from displayio import ColorConverter, Colorspace - import ulab.numpy as np import adafruit_imageload + import ulab.numpy as np + from displayio import ColorConverter, Colorspace if self.overlay_bmp is not None: self.overlay_bmp.deinit() @@ -899,7 +897,6 @@ def overlay(self, new_overlay_file: str) -> None: del arr def _init_jpeg_decoder(self): - # pylint: disable=import-outside-toplevel from jpegio import JpegDecoder """ @@ -919,7 +916,7 @@ def blit_overlay_into_last_capture(self): raise ValueError( "Must set overlay before calling blit_overlay_into_last_capture" ) - # pylint: disable=import-outside-toplevel + from adafruit_bitmapsaver import save_pixels from displayio import Bitmap, ColorConverter, Colorspace @@ -956,7 +953,7 @@ def blit_overlay_into_last_capture(self): def continuous_capture_start(self): """Switch the camera to continuous-capture mode""" - pass # pylint: disable=unnecessary-pass + pass def capture_into_jpeg(self): """Captures an image and returns it in JPEG format. @@ -998,7 +995,7 @@ def blit(self, bitmap, x_offset=0, y_offset=32): The default preview capture is 240x176, leaving 32 pixel rows at the top and bottom for status information. """ - # pylint: disable=import-outside-toplevel + from displayio import Bitmap if self.overlay_bmp is not None: @@ -1148,6 +1145,6 @@ def __init__(self, init_autofocus=True): try: self.mount_sd_card() - except Exception as exc: # pylint: disable=broad-exception-caught + except Exception as exc: # No SD card inserted, it's OK print(exc) diff --git a/adafruit_pycamera/imageprocessing.py b/adafruit_pycamera/imageprocessing.py index 98932aa..f218f08 100644 --- a/adafruit_pycamera/imageprocessing.py +++ b/adafruit_pycamera/imageprocessing.py @@ -84,7 +84,6 @@ def ironbow(bitmap, mask=None): return bitmapfilter.false_color(bitmap, ironbow_palette, mask=mask) -# pylint: disable=invalid-name def alphablend_maker(frac, nfrac=None): """Create an alpha-blending function for a specific fractional value diff --git a/docs/conf.py b/docs/conf.py index cbf1452..bb01a94 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - # SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries # # SPDX-License-Identifier: MIT diff --git a/examples/basic_camera/code.py b/examples/basic_camera/code.py index a58b4a3..da47151 100644 --- a/examples/basic_camera/code.py +++ b/examples/basic_camera/code.py @@ -1,10 +1,11 @@ # SPDX-FileCopyrightText: Copyright (c) 2023 john park for Adafruit Industries # # SPDX-License-Identifier: MIT -""" simple point-and-shoot camera example. No bells! Zero whistles! """ +"""simple point-and-shoot camera example. No bells! Zero whistles!""" import time -import adafruit_pycamera # pylint: disable=import-error + +import adafruit_pycamera pycam = adafruit_pycamera.PyCamera() pycam.mode = 0 # only mode 0 (JPEG) will work in this example diff --git a/examples/camera/boot.py b/examples/camera/boot.py index 84e2250..4106fc6 100644 --- a/examples/camera/boot.py +++ b/examples/camera/boot.py @@ -6,6 +6,7 @@ """Automatically create the /sd mount point at boot time""" import os + import storage storage.remount("/", readonly=False) diff --git a/examples/camera/code.py b/examples/camera/code.py index 553c035..d4d1fd7 100644 --- a/examples/camera/code.py +++ b/examples/camera/code.py @@ -4,6 +4,7 @@ # SPDX-License-Identifier: Unlicense import time + import bitmaptools import displayio import gifio @@ -141,7 +142,7 @@ continue i = 0 ft = [] - pycam._mode_label.text = "RECORDING" # pylint: disable=protected-access + pycam._mode_label.text = "RECORDING" pycam.display.refresh() with gifio.GifWriter( @@ -161,7 +162,7 @@ ft.append(1 / (t1 - t0)) print(end=".") t0 = t1 - pycam._mode_label.text = "GIF" # pylint: disable=protected-access + pycam._mode_label.text = "GIF" print(f"\nfinal size {f.tell()} for {i} frames") print(f"average framerate {i/(t1-t00)}fps") print(f"best {max(ft)} worst {min(ft)} std. deviation {np.std(ft)}") diff --git a/examples/filter/code.py b/examples/filter/code.py index 8d4598c..030e682 100644 --- a/examples/filter/code.py +++ b/examples/filter/code.py @@ -11,16 +11,14 @@ Otherwise, effects cycle every DISPLAY_INTERVAL milliseconds (default 2000 = 2 seconds) """ +import bitmapfilter import displayio -from jpegio import JpegDecoder from adafruit_display_text.label import Label -from adafruit_ticks import ticks_less, ticks_ms, ticks_add, ticks_diff +from adafruit_ticks import ticks_add, ticks_diff, ticks_less, ticks_ms from font_free_mono_bold_24 import FONT -import bitmapfilter - -from adafruit_pycamera import imageprocessing -from adafruit_pycamera import PyCameraBase +from jpegio import JpegDecoder +from adafruit_pycamera import PyCameraBase, imageprocessing blend_50_50 = bitmapfilter.blend_precompute(imageprocessing.alphablend_maker(0.5)) screen = bitmapfilter.blend_precompute(imageprocessing.screen_func) @@ -139,8 +137,7 @@ def sketch(b): def cycle(seq): while True: - for s in seq: - yield s + yield from seq effects_cycle = iter(cycle(effects)) diff --git a/examples/overlay/code_select.py b/examples/overlay/code_select.py index 665d4e2..cff371d 100644 --- a/examples/overlay/code_select.py +++ b/examples/overlay/code_select.py @@ -2,14 +2,16 @@ # SPDX-FileCopyrightText: Copyright (c) 2024 Tim Cocks for Adafruit Industries # # SPDX-License-Identifier: MIT -""" simple point-and-shoot camera example, with overly selecting using select button. +"""simple point-and-shoot camera example, with overly selecting using select button. Place all overlay files inside /sd/overlays/ directory. """ + import os import time import traceback -import adafruit_pycamera # pylint: disable=import-error + +import adafruit_pycamera MODE_POSITION = 0 MODE_SCALE = 1 diff --git a/examples/overlay/code_simple.py b/examples/overlay/code_simple.py index ffcea6a..28b5121 100644 --- a/examples/overlay/code_simple.py +++ b/examples/overlay/code_simple.py @@ -2,11 +2,12 @@ # SPDX-FileCopyrightText: Copyright (c) 2024 Tim Cocks for Adafruit Industries # # SPDX-License-Identifier: MIT -""" simple point-and-shoot camera example, with an overlay frame image. """ +"""simple point-and-shoot camera example, with an overlay frame image.""" import time import traceback -import adafruit_pycamera # pylint: disable=import-error + +import adafruit_pycamera pycam = adafruit_pycamera.PyCamera() pycam.mode = 0 # only mode 0 (JPEG) will work in this example diff --git a/examples/qrio/code.py b/examples/qrio/code.py index bc04fb3..026106f 100644 --- a/examples/qrio/code.py +++ b/examples/qrio/code.py @@ -14,8 +14,8 @@ from adafruit_pycamera import PyCamera pycam = PyCamera() -pycam._mode_label.text = "QR SCAN" # pylint: disable=protected-access -pycam._res_label.text = "" # pylint: disable=protected-access +pycam._mode_label.text = "QR SCAN" +pycam._res_label.text = "" pycam.effect = 0 pycam.camera.hmirror = False pycam.display.refresh() diff --git a/examples/viewer/code.py b/examples/viewer/code.py index 51abc6b..7b382e6 100644 --- a/examples/viewer/code.py +++ b/examples/viewer/code.py @@ -12,11 +12,13 @@ Otherwise, images cycle every DISPLAY_INTERVAL milliseconds (default 8000 = 8 seconds) """ -import time import os +import time + import displayio +from adafruit_ticks import ticks_add, ticks_diff, ticks_less, ticks_ms from jpegio import JpegDecoder -from adafruit_ticks import ticks_less, ticks_ms, ticks_add, ticks_diff + from adafruit_pycamera import PyCameraBase DISPLAY_INTERVAL = 8000 # milliseconds @@ -143,7 +145,7 @@ def main(): image_counter = (image_counter + 1) % len(all_images) try: load_resized_image(bitmap, filename) - except Exception as e: # pylint: disable=broad-exception-caught + except Exception as e: pycam.display_message(f"Failed to read\n{filename}", color=0xFF0000) print(e) deadline = ticks_add(now, 500) diff --git a/examples/web_settings_explorer/code.py b/examples/web_settings_explorer/code.py index 696e584..9dba6cc 100644 --- a/examples/web_settings_explorer/code.py +++ b/examples/web_settings_explorer/code.py @@ -69,9 +69,7 @@ def lcd(request: Request) -> Response: def take_jpeg(request: Request) -> Response: pycam.camera.reconfigure( pixel_format=espcamera.PixelFormat.JPEG, - frame_size=pycam.resolution_to_frame_size[ - pycam._resolution # pylint: disable=protected-access - ], + frame_size=pycam.resolution_to_frame_size[pycam._resolution], ) try: jpeg = pycam.camera.take(1) @@ -109,13 +107,13 @@ def property_common(obj, request): try: current_value = getattr(obj, propname, None) return JSONResponse(request, current_value) - except Exception as exc: # pylint: disable=broad-exception-caught + except Exception as exc: return Response(request, {"error": str(exc)}, status=BAD_REQUEST_400) else: new_value = json.loads(value) setattr(obj, propname, new_value) return JSONResponse(request, {"status": "OK"}) - except Exception as exc: # pylint: disable=broad-exception-caught + except Exception as exc: return JSONResponse(request, {"error": str(exc)}, status=BAD_REQUEST_400) diff --git a/pyproject.toml b/pyproject.toml index 8e00f88..79aeca8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,16 @@ classifiers = [ ] dynamic = ["dependencies", "optional-dependencies"] +[tool.ruff] +target-version = "py38" + +[tool.ruff.lint] +select = ["I", "PL", "UP"] +ignore = ["PLR2004", "UP030"] + +[tool.ruff.format] +line-ending = "lf" + [tool.setuptools] # TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER, # CHANGE `py_modules = ['...']` TO `packages = ['...']`