File tree 1 file changed +5
-5
lines changed
iotile_analytics_interactive/iotile_analytics/interactive/scripts 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -216,12 +216,12 @@ def print_report_details(report):
216
216
217
217
def find_analysis_groups (args ):
218
218
"""Parse through the list of options for analysis_group and build a list"""
219
+ groups = args .analysis_group
220
+
219
221
all_groups = []
220
222
all_logins = True
221
-
222
- groups = args .analysis_group
223
223
for _group in groups :
224
- logged_in , group = find_analysis_group (_group )
224
+ logged_in , group = find_analysis_group (args , _group )
225
225
all_groups .append (group )
226
226
all_logins = all_logins and logged_in
227
227
@@ -230,10 +230,10 @@ def find_analysis_groups(args):
230
230
231
231
return all_logins , all_groups
232
232
233
- def find_analysis_group (args ):
233
+ def find_analysis_group (args , group_in ):
234
234
"""Find an analysis group by name."""
235
235
236
- group = args . analysis_group
236
+ group = group_in
237
237
is_cloud = False
238
238
239
239
if group .startswith ('d--' ):
You can’t perform that action at this time.
0 commit comments