We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e46e816 commit 8538212Copy full SHA for 8538212
openwisp_controller/config/tasks.py
@@ -231,7 +231,5 @@ def invalidate_controller_views_for_group(group_id):
231
232
Device = load_model("config", "Device")
233
234
- for device in (
235
- Device.objects.filter(group_id=group_id).only("id").iterator()
236
- ):
+ for device in Device.objects.filter(group_id=group_id).only("id").iterator():
237
DeviceChecksumView.invalidate_get_device_cache(device)
0 commit comments