mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-06 09:56:09 +00:00
Reformat entire project with ruff instead of black
This commit is contained in:
@ -112,12 +112,10 @@ class flag_value:
|
||||
self.__doc__: Optional[str] = func.__doc__
|
||||
|
||||
@overload
|
||||
def __get__(self, instance: None, owner: Type[BF]) -> Self:
|
||||
...
|
||||
def __get__(self, instance: None, owner: Type[BF]) -> Self: ...
|
||||
|
||||
@overload
|
||||
def __get__(self, instance: BF, owner: Type[BF]) -> bool:
|
||||
...
|
||||
def __get__(self, instance: BF, owner: Type[BF]) -> bool: ...
|
||||
|
||||
def __get__(self, instance: Optional[BF], owner: Type[BF]) -> Any:
|
||||
if instance is None:
|
||||
|
Reference in New Issue
Block a user