Skip to content

Commit f5ab035

Browse files
committed
Update meta_util.py
1 parent 4fa0c70 commit f5ab035

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

qiita_db/meta_util.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -558,15 +558,15 @@ def generate_plugin_releases():
558558
def get_software_commands(active):
559559
software_list = [s for s in qdb.software.Software.iter(active=active)]
560560
software_commands = defaultdict(lambda: defaultdict(list))
561-
561+
562562
for software in software_list:
563563
sname = software.name
564564
sversion = software.version
565565
commands = software.commands
566-
566+
567567
for command in commands:
568568
software_commands[sname][sversion].append(command.name)
569-
569+
570570
return dict(software_commands)
571571

572572

0 commit comments

Comments
 (0)