mirror of
https://github.com/xfgryujk/blivechat.git
synced 2025-04-03 16:10:35 +08:00
修复一些PyCharm警告
This commit is contained in:
parent
335248c076
commit
6a4faa83a4
17
api/base.py
17
api/base.py
@ -7,6 +7,10 @@ import tornado.web
|
|||||||
|
|
||||||
# noinspection PyAbstractClass
|
# noinspection PyAbstractClass
|
||||||
class ApiHandler(tornado.web.RequestHandler):
|
class ApiHandler(tornado.web.RequestHandler):
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
self.json_args = None
|
||||||
|
|
||||||
def set_default_headers(self):
|
def set_default_headers(self):
|
||||||
# 跨域测试用
|
# 跨域测试用
|
||||||
if not self.application.settings['debug']:
|
if not self.application.settings['debug']:
|
||||||
@ -18,13 +22,12 @@ class ApiHandler(tornado.web.RequestHandler):
|
|||||||
self.request.headers['Access-Control-Request-Headers'])
|
self.request.headers['Access-Control-Request-Headers'])
|
||||||
|
|
||||||
def prepare(self):
|
def prepare(self):
|
||||||
if self.request.headers.get('Content-Type', '').startswith('application/json'):
|
if not self.request.headers.get('Content-Type', '').startswith('application/json'):
|
||||||
try:
|
return
|
||||||
self.json_args = json.loads(self.request.body)
|
try:
|
||||||
except json.JSONDecodeError:
|
self.json_args = json.loads(self.request.body)
|
||||||
self.json_args = None
|
except json.JSONDecodeError:
|
||||||
else:
|
pass
|
||||||
self.json_args = None
|
|
||||||
|
|
||||||
async def options(self, *_args, **_kwargs):
|
async def options(self, *_args, **_kwargs):
|
||||||
# 跨域测试用
|
# 跨域测试用
|
||||||
|
@ -121,7 +121,7 @@ class AppConfig:
|
|||||||
self.translator_configs = translator_configs
|
self.translator_configs = translator_configs
|
||||||
|
|
||||||
|
|
||||||
def _str_to_list(value, item_type: Type=str, container_type: Type=list):
|
def _str_to_list(value, item_type: Type = str, container_type: Type = list):
|
||||||
value = value.strip()
|
value = value.strip()
|
||||||
if value == '':
|
if value == '':
|
||||||
return container_type()
|
return container_type()
|
||||||
|
1
main.py
1
main.py
@ -60,6 +60,7 @@ def init_logging(debug):
|
|||||||
file_handler = logging.handlers.TimedRotatingFileHandler(
|
file_handler = logging.handlers.TimedRotatingFileHandler(
|
||||||
LOG_FILE_NAME, encoding='utf-8', when='midnight', backupCount=7, delay=True
|
LOG_FILE_NAME, encoding='utf-8', when='midnight', backupCount=7, delay=True
|
||||||
)
|
)
|
||||||
|
# noinspection PyArgumentList
|
||||||
logging.basicConfig(
|
logging.basicConfig(
|
||||||
format='{asctime} {levelname} [{name}]: {message}',
|
format='{asctime} {levelname} [{name}]: {message}',
|
||||||
datefmt='%Y-%m-%d %H:%M:%S',
|
datefmt='%Y-%m-%d %H:%M:%S',
|
||||||
|
@ -25,7 +25,7 @@ _avatar_url_cache: Dict[int, str] = {}
|
|||||||
# 正在获取头像的Future,user_id -> Future
|
# 正在获取头像的Future,user_id -> Future
|
||||||
_uid_fetch_future_map: Dict[int, asyncio.Future] = {}
|
_uid_fetch_future_map: Dict[int, asyncio.Future] = {}
|
||||||
# 正在获取头像的user_id队列
|
# 正在获取头像的user_id队列
|
||||||
_uid_queue_to_fetch = None
|
_uid_queue_to_fetch: Optional[asyncio.Queue] = None
|
||||||
# 上次被B站ban时间
|
# 上次被B站ban时间
|
||||||
_last_fetch_banned_time: Optional[datetime.datetime] = None
|
_last_fetch_banned_time: Optional[datetime.datetime] = None
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ engine = None
|
|||||||
DbSession: Optional[Type[sqlalchemy.orm.Session]] = None
|
DbSession: Optional[Type[sqlalchemy.orm.Session]] = None
|
||||||
|
|
||||||
|
|
||||||
def init(debug):
|
def init(_debug):
|
||||||
cfg = config.get_config()
|
cfg = config.get_config()
|
||||||
global engine, DbSession
|
global engine, DbSession
|
||||||
# engine = sqlalchemy.create_engine(cfg.database_url, echo=debug)
|
# engine = sqlalchemy.create_engine(cfg.database_url, echo=debug)
|
||||||
@ -28,7 +28,7 @@ def get_session():
|
|||||||
session = DbSession()
|
session = DbSession()
|
||||||
try:
|
try:
|
||||||
yield session
|
yield session
|
||||||
except:
|
except BaseException:
|
||||||
session.rollback()
|
session.rollback()
|
||||||
raise
|
raise
|
||||||
finally:
|
finally:
|
||||||
|
@ -23,7 +23,7 @@ NO_TRANSLATE_TEXTS = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_main_event_loop = asyncio.get_event_loop()
|
_main_event_loop = asyncio.get_event_loop()
|
||||||
_http_session = None
|
_http_session: Optional[aiohttp.ClientSession] = None
|
||||||
_translate_providers: List['TranslateProvider'] = []
|
_translate_providers: List['TranslateProvider'] = []
|
||||||
# text -> res
|
# text -> res
|
||||||
_translate_cache: Dict[str, str] = {}
|
_translate_cache: Dict[str, str] = {}
|
||||||
|
Loading…
Reference in New Issue
Block a user