Skip to content

Commit

Permalink
build(deps-dev): bump mypy from 1.5.1 to 1.6.1 (#2624)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump mypy from 1.5.1 to 1.6.1

Bumps [mypy](https://github.com/python/mypy) from 1.5.1 to 1.6.1.
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.5.1...v1.6.1)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add type ignore directives

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Iwan Aucamp <[email protected]>
  • Loading branch information
dependabot[bot] and aucampia authored Oct 29, 2023
1 parent f850cfc commit 3bee979
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
56 changes: 28 additions & 28 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions rdflib/plugins/sparql/algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -1009,8 +1009,8 @@ def convert_node_arg(
return node_arg.n3()
elif isinstance(node_arg, CompValue):
return "{" + node_arg.name + "}"
elif isinstance(node_arg, Expr):
return "{" + node_arg.name + "}"
elif isinstance(node_arg, Expr): # type: ignore[unreachable]
return "{" + node_arg.name + "}" # type: ignore[unreachable]
elif isinstance(node_arg, str):
return node_arg
else:
Expand Down

0 comments on commit 3bee979

Please sign in to comment.