From 675eefc30142b0a5c43946c9a44b26b610f4c9dd Mon Sep 17 00:00:00 2001 From: Petr Voronov Date: Tue, 8 Jul 2025 14:23:15 +0300 Subject: [PATCH] Fixes #18159 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):