💄 auto fix by pre-commit hooks

This commit is contained in:
pre-commit-ci[bot] 2023-10-03 11:38:58 +00:00 committed by felinae98
parent 9b112bf164
commit ffa180e8a6
3 changed files with 12 additions and 24 deletions

View File

@ -22,8 +22,7 @@ def _get_time():
return cur_time return cur_time
class SubscribeDupException(Exception): class SubscribeDupException(Exception): ...
...
class DBConfig: class DBConfig:

View File

@ -1,6 +1,4 @@
class NBESFVerMatchErr(Exception): class NBESFVerMatchErr(Exception): ...
...
class NBESFParseErr(Exception): class NBESFParseErr(Exception): ...
...

View File

@ -77,8 +77,7 @@ class PlatformMeta(RegistryMeta):
super().__init__(name, bases, namespace, **kwargs) super().__init__(name, bases, namespace, **kwargs)
class PlatformABCMeta(PlatformMeta, ABC): class PlatformABCMeta(PlatformMeta, ABC): ...
...
class Platform(metaclass=PlatformABCMeta, base=True): class Platform(metaclass=PlatformABCMeta, base=True):
@ -99,26 +98,22 @@ class Platform(metaclass=PlatformABCMeta, base=True):
@classmethod @classmethod
@abstractmethod @abstractmethod
async def get_target_name(cls, client: AsyncClient, target: Target) -> str | None: async def get_target_name(cls, client: AsyncClient, target: Target) -> str | None: ...
...
@abstractmethod @abstractmethod
async def fetch_new_post(self, sub_unit: SubUnit) -> list[tuple[PlatformTarget, list[Post]]]: async def fetch_new_post(self, sub_unit: SubUnit) -> list[tuple[PlatformTarget, list[Post]]]: ...
...
async def do_fetch_new_post(self, sub_unit: SubUnit) -> list[tuple[PlatformTarget, list[Post]]]: async def do_fetch_new_post(self, sub_unit: SubUnit) -> list[tuple[PlatformTarget, list[Post]]]:
return await catch_network_error(self.fetch_new_post, sub_unit) or [] return await catch_network_error(self.fetch_new_post, sub_unit) or []
@abstractmethod @abstractmethod
async def batch_fetch_new_post(self, sub_units: list[SubUnit]) -> list[tuple[PlatformTarget, list[Post]]]: async def batch_fetch_new_post(self, sub_units: list[SubUnit]) -> list[tuple[PlatformTarget, list[Post]]]: ...
...
async def do_batch_fetch_new_post(self, sub_units: list[SubUnit]) -> list[tuple[PlatformTarget, list[Post]]]: async def do_batch_fetch_new_post(self, sub_units: list[SubUnit]) -> list[tuple[PlatformTarget, list[Post]]]:
return await catch_network_error(self.batch_fetch_new_post, sub_units) or [] return await catch_network_error(self.batch_fetch_new_post, sub_units) or []
@abstractmethod @abstractmethod
async def parse(self, raw_post: RawPost) -> Post: async def parse(self, raw_post: RawPost) -> Post: ...
...
async def do_parse(self, raw_post: RawPost) -> Post: async def do_parse(self, raw_post: RawPost) -> Post:
"actually function called" "actually function called"
@ -360,20 +355,16 @@ class StatusChange(Platform, abstract=True):
pass pass
@abstractmethod @abstractmethod
async def get_status(self, target: Target) -> Any: async def get_status(self, target: Target) -> Any: ...
...
@abstractmethod @abstractmethod
async def batch_get_status(self, targets: list[Target]) -> list[Any]: async def batch_get_status(self, targets: list[Target]) -> list[Any]: ...
...
@abstractmethod @abstractmethod
def compare_status(self, target: Target, old_status, new_status) -> list[RawPost]: def compare_status(self, target: Target, old_status, new_status) -> list[RawPost]: ...
...
@abstractmethod @abstractmethod
async def parse(self, raw_post: RawPost) -> Post: async def parse(self, raw_post: RawPost) -> Post: ...
...
async def _handle_status_change( async def _handle_status_change(
self, new_status: Any, sub_unit: SubUnit self, new_status: Any, sub_unit: SubUnit