Skip to content

Commit

Permalink
disable line too long error
Browse files Browse the repository at this point in the history
  • Loading branch information
makermelissa committed Apr 30, 2024
1 parent 584cc5b commit d09369e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Wearable_Time_Lapse_Camera/timelapse.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
PREFIX = "img" # Image prefix (MUST NOT CONTAIN NUMBERS)
HALT_PIN = board.D21 # Halt button GPIO pin (other end to GND)
LED_PIN = board.D5 # Status LED pin (v2 Pi cam lacks built-in LED)
COMMAND = "libcamera-still -n --width {width} --height {height} -q {quality} --thumb none -t 250 -o {outfile}"
COMMAND = "libcamera-still -n --width {width} --height {height} -q {quality} --thumb none -t 250 -o {outfile}" # pylint: disable=line-too-long
# COMMAND = "raspistill -n -w {width -h {height} -q {quality} -th none -t 250 -o {outfile}"

def main():
Expand Down

0 comments on commit d09369e

Please sign in to comment.