Skip to content

Commit d09369e

Browse files
committed
disable line too long error
1 parent 584cc5b commit d09369e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Wearable_Time_Lapse_Camera/timelapse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
PREFIX = "img" # Image prefix (MUST NOT CONTAIN NUMBERS)
2828
HALT_PIN = board.D21 # Halt button GPIO pin (other end to GND)
2929
LED_PIN = board.D5 # Status LED pin (v2 Pi cam lacks built-in LED)
30-
COMMAND = "libcamera-still -n --width {width} --height {height} -q {quality} --thumb none -t 250 -o {outfile}"
30+
COMMAND = "libcamera-still -n --width {width} --height {height} -q {quality} --thumb none -t 250 -o {outfile}" # pylint: disable=line-too-long
3131
# COMMAND = "raspistill -n -w {width -h {height} -q {quality} -th none -t 250 -o {outfile}"
3232

3333
def main():

0 commit comments

Comments
 (0)