Skip to content

Commit ae711a3

Browse files
committed
refactor all to use for loop
1 parent 792c79e commit ae711a3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

channels/layers.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,9 @@ def valid_channel_names(self, names, receive=False):
167167
_non_empty_list = True if names else False
168168
_names_type = isinstance(names, list)
169169
assert _non_empty_list and _names_type, "names must be a non-empty list"
170-
all(
170+
for channel in names:
171171
self.require_valid_channel_name(channel, receive=receive)
172-
for channel in names
173-
)
174172
return True
175-
176173
def non_local_name(self, name):
177174
"""
178175
Given a channel name, returns the "non-local" part. If the channel name

0 commit comments

Comments
 (0)