Skip to content

Commit fbe01a2

Browse files
committed
Fix styling
1 parent 49b4a79 commit fbe01a2

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

qiita_db/meta_util.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -622,9 +622,9 @@ def update_resource_allocation_redis(active=True):
622622
f" command: {cname}"))
623623
if len(df) == 0:
624624
print(("No allocation resources available for" +
625-
f" software: {sname}" +
626-
f" version: {version}" +
627-
f" command: {cname}"))
625+
f" software: {sname}" +
626+
f" version: {version}" +
627+
f" command: {cname}"))
628628
continue
629629
# column_name_str looks like col1*col2*col3, etc
630630
for col_name_str in col_name_list:
@@ -640,10 +640,10 @@ def update_resource_allocation_redis(active=True):
640640
else:
641641
new_column *= df_copy[curr_column]
642642
print(("Building resource allocation plot for " +
643-
f" software: {sname}" +
644-
f" version: {version}" +
645-
f" command: {cname}" +
646-
f" column name: {col_name_str}"))
643+
f" software: {sname}" +
644+
f" version: {version}" +
645+
f" command: {cname}" +
646+
f" column name: {col_name_str}"))
647647

648648
fig, axs = resource_allocation_plot(df_copy,
649649
col_name_str,
@@ -699,10 +699,10 @@ def update_resource_allocation_redis(active=True):
699699
("title_time", titles[1], r_client.set)
700700
]
701701
print(("Saving resource allocation image for " +
702-
f" software: {sname}" +
703-
f" version: {version}" +
704-
f" command: {cname}" +
705-
f" column name: {col_name_str}"))
702+
f" software: {sname}" +
703+
f" version: {version}" +
704+
f" command: {cname}" +
705+
f" column name: {col_name_str}"))
706706

707707
for k, v, f in values:
708708
redis_key = 'resources$#%s$#%s$#%s$#%s:%s' % (

0 commit comments

Comments
 (0)