Skip to content

Commit

Permalink
make linter happy and prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
marph91 committed Oct 5, 2024
1 parent 95e3269 commit 91595af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/formats/synology_note_station.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")):
Expand Down
2 changes: 1 addition & 1 deletion src/jimmy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 91595af

Please sign in to comment.