Skip to content

Commit b195c3e

Browse files
aobereggAlexander Obereggerods
authored
Update black to fix linting (#832)
* fix flake check * adjust to version that fixes the issue * fix linting * Fix version of black (reproducability) Co-authored-by: Alexander Oberegger <[email protected]> Co-authored-by: Denis Otkidach <[email protected]>
1 parent 2c54e10 commit b195c3e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

aiokafka/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ def get_running_loop() -> asyncio.AbstractEventLoop:
8989

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

92-
INTEGER_MAX_VALUE = 2 ** 31 - 1
93-
INTEGER_MIN_VALUE = -(2 ** 31)
92+
INTEGER_MAX_VALUE = 2**31 - 1
93+
INTEGER_MIN_VALUE = -(2**31)

requirements-ci.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r requirements-cython.txt
22
flake8==4.0.1
3-
black==21.10b0
3+
black==22.3.0
44
mypy==0.910
55
isort[colors]==5.10.0
66
pytest==6.1.2

requirements-win-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r requirements-cython.txt
22
flake8==4.0.1
3-
black==21.10b0
3+
black==22.3.0
44
mypy==0.910
55
isort[colors]==5.10.0
66
pytest==6.1.2

0 commit comments

Comments
 (0)