From ee2aaa6508da81f60cd147253900f203ac9c1b51 Mon Sep 17 00:00:00 2001 From: Petr Voronov Date: Tue, 8 Jul 2025 20:11:03 +0300 Subject: [PATCH] Fixes #19633 fix PEP8 compliance error of previous commit in test_conditions.py --- netbox/extras/tests/test_conditions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/extras/tests/test_conditions.py b/netbox/extras/tests/test_conditions.py index 8d38802ca..0ddb89cf3 100644 --- a/netbox/extras/tests/test_conditions.py +++ b/netbox/extras/tests/test_conditions.py @@ -146,6 +146,7 @@ class ConditionTestCase(TestCase): self.assertTrue(c.eval({'x': None})) # not (None match) → True self.assertTrue(c.eval({'z': 'abc'})) # Missing 'x' → True + class ConditionSetTest(TestCase): def test_empty(self):