From 74f341db77834a0481dca32e097fb3ca2f1fcf51 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Tue, 11 Nov 2025 20:42:15 -0800 Subject: [PATCH] fixup! [pather] code style changes --- masque/builder/pather_mixin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/builder/pather_mixin.py b/masque/builder/pather_mixin.py index 180f451..4cb8ce9 100644 --- a/masque/builder/pather_mixin.py +++ b/masque/builder/pather_mixin.py @@ -410,7 +410,7 @@ class PatherMixin(metaclass=ABCMeta): for bt in ('emin', 'emax', 'pmin', 'pmax', 'xmin', 'xmax', 'ymin', 'ymax', 'min_past_furthest'): if bt in kwargs: bound_types.add(bt) - bound = kwargs.pop('bt') + bound = kwargs.pop(bt) if not bound_types: raise BuildError('No bound type specified for mpath')