Skip to content

Commit

Permalink
Update black to fix linting (#832)
Browse files Browse the repository at this point in the history
* fix flake check

* adjust to version that fixes the issue

* fix linting

* Fix version of black (reproducability)

Co-authored-by: Alexander Oberegger <alexander.oberegger@smaxtec.com>
Co-authored-by: Denis Otkidach <denis.otkidach@gmail.com>
  • Loading branch information
3 people committed May 10, 2022
1 parent 2c54e10 commit b195c3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aiokafka/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ def get_running_loop() -> asyncio.AbstractEventLoop:

NO_EXTENSIONS = bool(os.environ.get("AIOKAFKA_NO_EXTENSIONS"))

INTEGER_MAX_VALUE = 2 ** 31 - 1
INTEGER_MIN_VALUE = -(2 ** 31)
INTEGER_MAX_VALUE = 2**31 - 1
INTEGER_MIN_VALUE = -(2**31)
2 changes: 1 addition & 1 deletion requirements-ci.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r requirements-cython.txt
flake8==4.0.1
black==21.10b0
black==22.3.0
mypy==0.910
isort[colors]==5.10.0
pytest==6.1.2
Expand Down
2 changes: 1 addition & 1 deletion requirements-win-test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r requirements-cython.txt
flake8==4.0.1
black==21.10b0
black==22.3.0
mypy==0.910
isort[colors]==5.10.0
pytest==6.1.2
Expand Down

0 comments on commit b195c3e

Please sign in to comment.