Skip to content

Commit 5c09cff

Browse files
committed
pre-commit autoupdate and run --all-files
1 parent 2f4d41e commit 5c09cff

7 files changed

+7
-13
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Gurux.DLMS.python
1111
docs/build/doctrees/
1212
*.egg-info
1313
.coverage
14-
venv/
14+
venv/

.pre-commit-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v3.2.0
5+
rev: v4.4.0
66
hooks:
77
- id: trailing-whitespace
88
- id: end-of-file-fixer
99
- id: check-yaml
1010
- id: check-added-large-files
1111
- repo: https://github.com/psf/black
12-
rev: 19.3b0
12+
rev: 23.3.0
1313
hooks:
1414
- id: black
1515
- repo: https://github.com/pycqa/flake8
16-
rev: '' # pick a git hash / tag to point to
16+
rev: '6.0.0' # pick a git hash / tag to point to
1717
hooks:
1818
- id: flake8
1919
- repo: https://github.com/pycqa/isort
20-
rev: 5.8.0
20+
rev: 5.12.0
2121
hooks:
2222
- id: isort
2323
name: isort (python)

src/code_to_pdf/html_generator.py

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818

1919
def code_to_html(input_code: str, name_in_header: str, regex_pattern=None):
20-
2120
with open(input_code) as file:
2221
file_str = file.read()
2322

src/code_to_pdf/pdf_generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def add_blank_page(pdf_file):
108108

109109
@staticmethod
110110
def number_of_pages(pdf_file):
111-
""" Get number of pages of a PDF """
111+
"""Get number of pages of a PDF"""
112112
pdf_reader = PyPDF2.PdfReader(pdf_file)
113113
return len(pdf_reader.pages)
114114

src/code_to_pdf/run.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ def argument_parser(raw_args):
9494

9595

9696
def config_parser(args: dict) -> Parameters:
97-
9897
config_file = args.pop("config_file")
9998

10099
if config_file:
@@ -116,10 +115,9 @@ def main(raw_args=None):
116115
toc = TocGenerator()
117116
pdf_creator = PDFCreator()
118117

119-
for (path_str, file_name, is_dir, depth, tree_string, path_rel) in walk_tree(
118+
for path_str, file_name, is_dir, depth, tree_string, path_rel in walk_tree(
120119
params.source_folder, excluded_files=params.exclude_list
121120
):
122-
123121
toc.add_entry(
124122
file_name, depth + 1, pdf_creator.page_number, tree_string, is_dir=is_dir
125123
)

src/code_to_pdf/toc_generator.py

-2
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,9 @@ def generate_volumes(
158158
version_control_folder: str = None,
159159
**args,
160160
):
161-
162161
total_pages = PDFCreator.number_of_pages(contents)
163162

164163
for i in range(total_pages // max_pages_per_volume + 1):
165-
166164
toc_aux = self.render_toc(
167165
project_name, version_control_folder, volume=f"Volume {i}", **args
168166
)

src/code_to_pdf/tree_generator.py

-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ def walk_tree(path_str: str, excluded_files: List = BLACK_LIST):
110110
for tree_string, path_object in iterate_over_dir(
111111
path, excluded_files=excluded_files
112112
):
113-
114113
path_str = str(path_object)
115114
is_dir = path_object.is_dir()
116115
file_name = path_object.name

0 commit comments

Comments
 (0)