Skip to content

Commit

Permalink
Code refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Deep-Chill committed Dec 16, 2023
1 parent 1a26358 commit f29e3d7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion djaopsp/urls/views/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
AssessPracticesXLSXView.as_view(), name='assess_download_segment'),
path('assess/<slug:sample>/download/',
AssessPracticesXLSXView.as_view(), name='assess_download'),
path('assess/<slug:sample>/downloadpptx/',
path('assess/<slug:sample>/download/pptx/',
AssessPracticesPPTXView.as_view(), name='assess_download_pptx'),
path('assess/<slug:sample>/<path:path>/',
AssessPracticesView.as_view(), name='assess_practices'),
Expand Down
1 change: 0 additions & 1 deletion djaopsp/views/assess.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,6 @@ def add_extra_content_to_title_slide(self, slide, extra_values):
if key and value:
p = text_frame.add_paragraph()
p.text = f"{key}: {value}"
# Set font settings for the paragraph
for run in p.runs:
run.font.name = self.template_config["body_font"]
run.font.size = Pt(self.template_config["body_font_size"])
Expand Down

0 comments on commit f29e3d7

Please sign in to comment.