Skip to content

Commit

Permalink
Merge pull request #52 from anevis/dependabot/pip/ruff-0.8.6
Browse files Browse the repository at this point in the history
[dependabot] Bump ruff from 0.6.3 to 0.8.6
  • Loading branch information
anevis authored Jan 6, 2025
2 parents c5ffe03 + 9ad939f commit 1a82b7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pytest==8.3.4
pytest-cov==6.0.0

mypy==1.14.1
ruff==0.6.3
ruff==0.8.6
safety==3.2.14

# Packaging
Expand Down
6 changes: 3 additions & 3 deletions src/yaml_to_markdown/md_converter_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,10 @@ def test_process_section(
) -> None:
output_writer = StringIO()
md_converter = MDConverter()
_table_items = [deepcopy(itm) for itm in _TABLE_ITEMS]
_table_items.append(extra_item)
table_items = [deepcopy(itm) for itm in _TABLE_ITEMS]
table_items.append(extra_item)
data: dict[str, Any] = {
"section-one": _table_items,
"section-one": table_items,
"section-two": _LIST_ITEMS,
}
md_converter.convert(data, output_writer)
Expand Down

0 comments on commit 1a82b7d

Please sign in to comment.