Skip to content

Commit

Permalink
remove resources folder requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
starsbit committed Jul 29, 2022
1 parent efe210b commit 3f9bf3b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Empty file removed resources/.gitkeep
Empty file.
2 changes: 1 addition & 1 deletion src/bitwarden_html_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,5 +167,5 @@ def parse_to_html():
return loaded_template.render(categories=categories)


with open('./resources/output.html', 'w', encoding="utf-8") as html_file:
with open('./output.html', 'w', encoding="utf-8") as html_file:
html_file.write(parse_to_html())
2 changes: 1 addition & 1 deletion src/bitwarden_pdf_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

from bitwarden_html_converter import parse_to_html

pdfkit.from_string(parse_to_html(), './resources/output.pdf')
pdfkit.from_string(parse_to_html(), './output.pdf')

0 comments on commit 3f9bf3b

Please sign in to comment.