Skip to content

Commit

Permalink
refactor: change __all__ to tuple
Browse files Browse the repository at this point in the history
There is no right or wrong here, just we used tuples elsewhere.
  • Loading branch information
vytas7 authored Oct 24, 2024
1 parent 8fb84ee commit a8e1e6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions falcon/testing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -156,7 +156,7 @@ def test_get_message(client):
'StartResponseMock',
# test_case
'TestCase',
]
)


# NOTE(kgriffs): Alias for backwards-compatibility with Falcon 0.2
Expand Down

0 comments on commit a8e1e6a

Please sign in to comment.