diff options
author | 2024-03-21 13:30:14 +0000 | |
---|---|---|
committer | 2024-03-21 13:30:14 +0000 | |
commit | 365fea67f2a47d78ea1eda047264cf10b4f84157 (patch) | |
tree | 08b19b418a43373402b0b403f8a8ffd83cb30834 /bot/__main__.py | |
parent | Merge pull request #1481 from python-discord/dependabot/pip/pydis-core-11.0.1 (diff) |
Bump ruff from 0.2.1 to 0.3.3 (#1479)
* Bump ruff from 0.2.1 to 0.3.3
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.2.1 to 0.3.3.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](https://github.com/astral-sh/ruff/compare/v0.2.1...v0.3.3)
---
updated-dependencies:
- dependency-name: ruff
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
* apply ruff fixes
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: shtlrs <[email protected]>
Diffstat (limited to 'bot/__main__.py')
-rw-r--r-- | bot/__main__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/__main__.py b/bot/__main__.py index bacb2fdd..b3f346a8 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -17,6 +17,7 @@ from bot.utils.decorators import whitelist_check log = get_logger(__name__) setup_sentry() + async def _create_redis_session() -> RedisSession: """Create and connect to a redis session.""" redis_session = RedisSession( |