Upgrade black to 21.4b0 and reformat (#5250)

This introduces newlines before decorators.
This commit is contained in:
Sebastian Rittau
2021-04-26 13:58:27 +02:00
committed by GitHub
parent 48b060cfa0
commit 45916045c8
18 changed files with 19 additions and 1 deletions

View File

@@ -80,6 +80,7 @@ LOCK_RW: int
LOCK_SH: int
LOCK_UN: int
LOCK_WRITE: int
@overload
def fcntl(__fd: FileDescriptorLike, __cmd: int, __arg: int = ...) -> int: ...
@overload
@@ -87,6 +88,7 @@ def fcntl(__fd: FileDescriptorLike, __cmd: int, __arg: bytes) -> bytes: ...
_ReadOnlyBuffer = bytes
_WritableBuffer = Union[bytearray, memoryview, array[Any]]
@overload
def ioctl(__fd: FileDescriptorLike, __request: int, __arg: int = ..., __mutate_flag: bool = ...) -> int: ...
@overload