From 689c01102cbda652980284ddebb6c1a0e8f98553 Mon Sep 17 00:00:00 2001 From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Mon, 7 Nov 2022 21:07:36 -0500 Subject: [PATCH] Fix pylint errors --- examples/turtle_hilbert.py | 2 ++ examples/turtle_koch.py | 2 ++ examples/turtle_overlayed_koch.py | 2 ++ 3 files changed, 6 insertions(+) diff --git a/examples/turtle_hilbert.py b/examples/turtle_hilbert.py index c2a5e79..6413d3a 100644 --- a/examples/turtle_hilbert.py +++ b/examples/turtle_hilbert.py @@ -1,6 +1,8 @@ # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries # SPDX-License-Identifier: MIT +# pylint: disable=unnecessary-lambda-assignment + import board from adafruit_turtle import turtle diff --git a/examples/turtle_koch.py b/examples/turtle_koch.py index a2d5ee8..9332a36 100644 --- a/examples/turtle_koch.py +++ b/examples/turtle_koch.py @@ -1,6 +1,8 @@ # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries # SPDX-License-Identifier: MIT +# pylint: disable=unnecessary-lambda-assignment + import board from adafruit_turtle import turtle diff --git a/examples/turtle_overlayed_koch.py b/examples/turtle_overlayed_koch.py index 05bfef0..cd92939 100644 --- a/examples/turtle_overlayed_koch.py +++ b/examples/turtle_overlayed_koch.py @@ -1,6 +1,8 @@ # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries # SPDX-License-Identifier: MIT +# pylint: disable=unnecessary-lambda-assignment + import board from adafruit_turtle import turtle, Color