Skip to content

Commit

Permalink
refactor fix. Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Shettland committed Jul 23, 2024
1 parent 94d69e4 commit 5cf2b89
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions relecov_core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,10 @@ def intranet(request):
sample_lab_objs = relecov_core.utils.samples.get_sample_objs_per_lab(
lab_name
)
analysis_percent = relecov_core.utils.bioinfo_analysis.get_bio_analysis_stats_from_lab(
lab_name
analysis_percent = (
relecov_core.utils.bioinfo_analysis.get_bio_analysis_stats_from_lab(
lab_name
)
)
cust_data = {
"col_names": ["Sequencing Date", "Number of samples"],
Expand Down Expand Up @@ -320,7 +322,9 @@ def intranet(request):
)
)
# graph for percentage analysis
analysis_percent = relecov_core.utils.bioinfo_analysis.get_bio_analysis_stats_from_lab()
analysis_percent = (
relecov_core.utils.bioinfo_analysis.get_bio_analysis_stats_from_lab()
)
manager_intra_data["sample_gauge_graph"] = (
relecov_core.utils.samples.perc_gauge_graphic(analysis_percent)
)
Expand Down

0 comments on commit 5cf2b89

Please sign in to comment.