format code

This commit is contained in:
felinae98
2022-02-12 11:22:39 +08:00
parent 3e5e83098c
commit 5a492aceb3
20 changed files with 42 additions and 42 deletions
@@ -5,9 +5,9 @@ import httpx
from bs4 import BeautifulSoup as bs
from ..post import Post
from ..types import Category, RawPost, Target
from ..utils import Render
from ..types import Target, RawPost, Category
from .platform import NewMessage, StatusChange, CategoryNotSupport
from .platform import CategoryNotSupport, NewMessage, StatusChange
class Arknights(NewMessage):
@@ -1,7 +1,7 @@
import time
from abc import ABC, abstractmethod
from collections import defaultdict
from dataclasses import dataclass
import time
from typing import Any, Collection, Literal, Optional
import httpx
+1 -1
View File
@@ -1,9 +1,9 @@
import calendar
from typing import Any, Optional
from bs4 import BeautifulSoup as bs
import feedparser
import httpx
from bs4 import BeautifulSoup as bs
from ..post import Post
from ..types import RawPost, Target
+2 -2
View File
@@ -1,11 +1,11 @@
from datetime import datetime
import hashlib
import json
import re
from datetime import datetime
from typing import Any, Optional
from bs4 import BeautifulSoup as bs
import httpx
from bs4 import BeautifulSoup as bs
from ..types import *
+3 -3
View File
@@ -1,14 +1,14 @@
import re
import json
import re
from datetime import datetime
from typing import Any, Optional
import httpx
from nonebot import logger
from bs4 import BeautifulSoup as bs
from nonebot import logger
from ..types import *
from ..post import Post
from ..types import *
from .platform import NewMessage