From 91595afba2d9156b1bbd1479f3bc1780e160d42e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20D=C3=B6rfelt?= Date: Sat, 5 Oct 2024 14:33:06 +0200 Subject: [PATCH] make linter happy and prepare for release --- src/formats/synology_note_station.py | 2 +- src/jimmy.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/formats/synology_note_station.py b/src/formats/synology_note_station.py index 6bb31f0b..671be5ae 100644 --- a/src/formats/synology_note_station.py +++ b/src/formats/synology_note_station.py @@ -34,7 +34,7 @@ def streamline_html(content_html: str) -> str: for table in soup.find_all("table"): # Remove all divs, since they cause pandoc to fail converting the table. # https://stackoverflow.com/a/32064299/7410886 - for div in table.find_all("div"): + for div in table.find_all("div"): div.unwrap() for row_index, row in enumerate(table.find_all("tr")): diff --git a/src/jimmy.py b/src/jimmy.py index c81303f8..1356fe50 100644 --- a/src/jimmy.py +++ b/src/jimmy.py @@ -89,7 +89,7 @@ def get_tree(root_notebooks: list[imf.Notebook], root_tree: Tree) -> Tree: def jimmy(config) -> common.Stats: - LOGGER.info(f"Jimmy 0.0.22 (Pandoc {pypandoc.get_pandoc_version()})") + LOGGER.info(f"Jimmy 0.0.23 (Pandoc {pypandoc.get_pandoc_version()})") inputs_str = " ".join(map(str, config.input)) LOGGER.info(f'Importing notes from "{inputs_str}"') LOGGER.info("Start parsing")