Skip to content

Commit

Permalink
Bump ruff from 0.0.271 to 0.0.287 (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Oct 11, 2023
1 parent ad4ee66 commit b768f96
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
38 changes: 19 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion prosemirror/model/from_dom.py
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ def remove_pending_mark(self, mark: Mark, upto: NodeContext) -> None:


def normalize_list(dom_: DOMNode) -> None:
child = list(dom_)[0]
child = next(iter(dom_))
prev_item = None

while child is not None:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pandoc = "^2.3"
pydash = "^7.0.3"
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
ruff = "^0.0.271"
ruff = ">=0.0.271,<0.0.288"

[tool.black]
max-line-length = 88
Expand Down

0 comments on commit b768f96

Please sign in to comment.