From 1d1abf0ce494f842cee2c902b31bd640f5390e8d Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 17 Jan 2022 18:09:41 -0300 Subject: [PATCH] Fixed flake8 detail --- kibot/out_pcbdraw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/out_pcbdraw.py b/kibot/out_pcbdraw.py index 64fceeb4..d2de708e 100644 --- a/kibot/out_pcbdraw.py +++ b/kibot/out_pcbdraw.py @@ -156,7 +156,7 @@ class PcbDrawOptions(VariantOptions): def config(self, parent): # Pre-parse the bottom option if 'bottom' in self._tree: - bot = self._tree['bottom'] + bot = self._tree['bottom'] if isinstance(bot, bool): self.bottom = bot super().config(parent)