Quick fixes

This commit is contained in:
BarsTiger
2023-11-02 16:09:28 +02:00
parent e5eaf4baa6
commit ee0a0ff285
5 changed files with 10 additions and 7 deletions

View File

@@ -2,10 +2,11 @@ import os
import traceback
import contextlib
import re
from typing import Type
class PrettyException:
def __init__(self, e: Exception):
def __init__(self, e: Type[BaseException] | Exception):
self.long = f"""
😍 {e.__class__.__name__}
👉 {"".join(traceback.format_exception_only(e)).strip()}

View File

@@ -17,7 +17,7 @@ class MemoryStorageRecord:
class StorageDict(DefaultDict):
def __init__(self, default_factory=None, **kwargs) -> None:
def __init__(self, default_factory=None) -> None:
if type(db.fsm.get('fsm')) is not dict:
db.fsm['fsm'] = dict()