From a8e1e6ad4a88e873fddb8d0a49268bf034ee24b2 Mon Sep 17 00:00:00 2001 From: Vytautas Liuolia Date: Thu, 24 Oct 2024 16:34:13 +0200 Subject: [PATCH] refactor: change `__all__` to tuple There is no right or wrong here, just we used tuples elsewhere. --- falcon/testing/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/falcon/testing/__init__.py b/falcon/testing/__init__.py index 530c2111f..7d55fbf8d 100644 --- a/falcon/testing/__init__.py +++ b/falcon/testing/__init__.py @@ -115,7 +115,7 @@ def test_get_message(client): from falcon.testing.srmock import StartResponseMock from falcon.testing.test_case import TestCase -__all__ = [ +__all__ = ( # client 'ASGIConductor', 'Cookie', @@ -156,7 +156,7 @@ def test_get_message(client): 'StartResponseMock', # test_case 'TestCase', -] +) # NOTE(kgriffs): Alias for backwards-compatibility with Falcon 0.2