We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b96b55e commit 56e6aa1Copy full SHA for 56e6aa1
1 file changed
tests/integration/helpers.py
@@ -212,7 +212,9 @@ def get_random_region_with_caps(
212
213
# To filter out regions that cannot be used for the Linode resource
214
if valid_regions:
215
- matching_region_ids = [reg for reg in matching_region_ids if reg in valid_regions]
+ matching_region_ids = [
216
+ reg for reg in matching_region_ids if reg in valid_regions
217
+ ]
218
219
return random.choice(matching_region_ids) if matching_region_ids else None
220
0 commit comments