diff options
author | 2023-05-15 19:55:12 +0000 | |
---|---|---|
committer | 2023-05-15 19:55:12 +0000 | |
commit | 6115936161ce67fd87747600c0b43068624da42a (patch) | |
tree | 1a29ff4eb28477639e2862e027dfdc16714af4bb /bot/exts/fun/snakes/_utils.py | |
parent | Bump sentry-sdk from 1.21.1 to 1.22.2 (#1274) (diff) |
Bump ruff from 0.0.265 to 0.0.267 (#1276)
* Bump ruff from 0.0.265 to 0.0.267
Bumps [ruff](https://github.com/charliermarsh/ruff) from 0.0.265 to 0.0.267.
- [Release notes](https://github.com/charliermarsh/ruff/releases)
- [Changelog](https://github.com/charliermarsh/ruff/blob/main/BREAKING_CHANGES.md)
- [Commits](https://github.com/charliermarsh/ruff/compare/v0.0.265...v0.0.267)
---
updated-dependencies:
- dependency-name: ruff
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected]>
* Fix linting errors from new ruff rules
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Chris Lovering <[email protected]>
Diffstat (limited to 'bot/exts/fun/snakes/_utils.py')
-rw-r--r-- | bot/exts/fun/snakes/_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/snakes/_utils.py b/bot/exts/fun/snakes/_utils.py index 5332cde2..ffffcd34 100644 --- a/bot/exts/fun/snakes/_utils.py +++ b/bot/exts/fun/snakes/_utils.py @@ -489,7 +489,7 @@ class SnakeAndLaddersGame: await self.channel.send( f"**Snakes and Ladders**: {user.mention} has joined the game.\n" - f"There are now {str(len(self.players))} players in the game.", + f"There are now {len(self.players)!s} players in the game.", delete_after=10 ) |