3
0
Fork 0

fix: fix 'assignment-from-no-return' for pylint

This commit is contained in:
Lance Edgar 2025-09-01 10:13:07 -05:00
parent 5a6ed6135a
commit 11ec57387e
3 changed files with 12 additions and 5 deletions

View file

@ -1656,6 +1656,11 @@ class TestMasterView(WebTestCase):
count = self.session.query(model.Setting).count()
self.assertEqual(count, 0)
def test_configure_get_simple_settings(self):
view = self.make_view()
settings = view.configure_get_simple_settings()
self.assertEqual(settings, [])
def test_configure_gather_settings(self):
view = self.make_view()