Skip to content

Commit

Permalink
build(deps): bump mypy from 1.4.1 to 1.5.1 (#2319)
Browse files Browse the repository at this point in the history
* build(deps): bump mypy from 1.4.1 to 1.5.1

Bumps [mypy](https://github.com/python/mypy) from 1.4.1 to 1.5.1.
- [Commits](python/mypy@v1.4.1...v1.5.1)

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

Signed-off-by: dependabot[bot] <support@github.com>

* Add type: ignore

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ivana Kellyerova <ivana.kellyerova@sentry.io>
  • Loading branch information
dependabot[bot] and sentrivana authored Aug 28, 2023
1 parent b2c9af9 commit bd34437
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linter-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mypy==1.4.1
mypy==1.5.1
black==23.7.0
flake8==5.0.4
types-certifi
Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/integrations/starlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def injection_wrapper(self: "Starlite", *args: "Any", **kwargs: "Any") -> None:
]
)

SentryStarliteASGIMiddleware.__call__ = SentryStarliteASGIMiddleware._run_asgi3
SentryStarliteASGIMiddleware.__call__ = SentryStarliteASGIMiddleware._run_asgi3 # type: ignore
middleware = kwargs.pop("middleware", None) or []
kwargs["middleware"] = [SentryStarliteASGIMiddleware, *middleware]
old__init__(self, *args, **kwargs)
Expand Down

0 comments on commit bd34437

Please sign in to comment.