Skip to content

Commit

Permalink
Bump flake8-comprehensions from 3.9.0 to 3.10.0 (#1163)
Browse files Browse the repository at this point in the history
* Bump flake8-comprehensions from 3.9.0 to 3.10.0

Bumps [flake8-comprehensions](https:/adamchainz/flake8-comprehensions) from 3.9.0 to 3.10.0.
- [Release notes](https:/adamchainz/flake8-comprehensions/releases)
- [Changelog](https:/adamchainz/flake8-comprehensions/blob/main/HISTORY.rst)
- [Commits](adamchainz/flake8-comprehensions@3.9.0...3.10.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored May 19, 2022
1 parent 07686e6 commit 09bba9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flake8-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ flake8-black==0.3.3 # runs black
flake8-broken-line==0.4.0 # forbey "\" linebreaks
flake8-builtins==1.5.3 # builtin shadowing checks
flake8-coding==1.3.2 # coding magic-comment detection
flake8-comprehensions==3.9.0 # comprehension checks
flake8-comprehensions==3.10.0 # comprehension checks
flake8-deprecated==1.3 # deprecated call checks
flake8-docstrings==1.6.0 # pydocstyle support
flake8-executable==2.1.1 # shebangs
Expand Down
2 changes: 1 addition & 1 deletion tests/hikari/internal/test_aio.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __await__(self):

def __repr__(self):
args = ", ".join(map(repr, self.args))
kwargs = ", ".join(map(lambda k, v: f"{k!s}={v!r}", self.kwargs.items()))
kwargs = ", ".join(f"{key!s}={value!r}" for key, value in self.kwargs.items())
return f"({args}, {kwargs})"


Expand Down

0 comments on commit 09bba9f

Please sign in to comment.