Skip to content

Commit 10b3bc6

Browse files
authored
Merge pull request #940 from sbrunner/renovate/master-patch-all-patch-versions
Update all patch versions (master) (patch)
2 parents c43eae0 + 9132c41 commit 10b3bc6

File tree

6 files changed

+102
-84
lines changed

6 files changed

+102
-84
lines changed

.pre-commit-config.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
ci:
2+
skip:
3+
- copyright
4+
5+
repos:
6+
- repo: https://github.com/sbrunner/pre-commit-copyright
7+
rev: 0.2.3
8+
hooks:
9+
- id: copyright
10+
- repo: https://github.com/psf/black
11+
rev: 23.1.0
12+
hooks:
13+
- id: black
14+
- repo: https://github.com/PyCQA/isort
15+
rev: 5.12.0
16+
hooks:
17+
- id: isort

poetry.lock

+83-77
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ pyzbar = "0.1.9"
5656
reportlab = "3.6.12"
5757
weasyprint = "56.1"
5858
cffi = "1.15.1"
59-
pikepdf = "6.2.7"
59+
pikepdf = "6.2.9"
6060
zxing-cpp = "1.4.0"
6161
pyperclip = "1.8.2"
6262
tifffile = "2022.8.12"
6363
deepmerge = "1.0.1"
64-
matplotlib = "3.6.2"
64+
matplotlib = "3.6.3"
6565

6666
[tool.poetry.dev-dependencies]
6767
prospector = { version = "1.7.7", extras = ["with_bandit", "with_mypy", "with_pyroma"] }

scan_to_paperless/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ def get_config(config_filename: str) -> schema.Configuration:
3131
with open(config_filename, encoding="utf-8") as config_file:
3232
config = cast(schema.Configuration, yaml.load(config_file))
3333
if "extends" in config:
34-
3534
base_config = get_config(
3635
os.path.normpath(
3736
os.path.join(os.path.dirname(config_filename), os.path.expanduser(config["extends"]))

scan_to_paperless/code.py

-3
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ def _get_bar_codes_with_open_cv(
112112
all_codes: Optional[List[_Code]] = None,
113113
added_codes: Optional[Dict[str, _AllCodes]] = None,
114114
) -> List[_PageCode]:
115-
116115
if added_codes is None:
117116
added_codes = {}
118117
if all_codes is None:
@@ -171,7 +170,6 @@ def _get_qr_codes_with_open_cv(
171170
all_codes: Optional[List[_Code]] = None,
172171
added_codes: Optional[Dict[str, _AllCodes]] = None,
173172
) -> List[_PageCode]:
174-
175173
if added_codes is None:
176174
added_codes = {}
177175
if all_codes is None:
@@ -330,7 +328,6 @@ def _get_codes_with_z_bar(
330328
all_codes: Optional[List[_Code]] = None,
331329
added_codes: Optional[Dict[str, _AllCodes]] = None,
332330
) -> List[_PageCode]:
333-
334331
if added_codes is None:
335332
added_codes = {}
336333
if all_codes is None:

scan_to_paperless/process.py

-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,6 @@ def _histogram(
538538
process_count: int,
539539
log: bool,
540540
) -> None:
541-
542541
_, axes = plt.subplots(figsize=(15, 5))
543542
axes.set_xlim(0, 255)
544543

0 commit comments

Comments
 (0)