mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
Fix mypy error in AdminNotifyHandler.emit().
This commit is contained in:
@@ -88,7 +88,7 @@ class AdminNotifyHandler(logging.Handler):
|
||||
logging.Handler.__init__(self)
|
||||
|
||||
def emit(self, record: logging.LogRecord) -> None:
|
||||
report = {}
|
||||
report = {} # type: Dict[str, Any]
|
||||
|
||||
try:
|
||||
report['node'] = platform.node()
|
||||
|
||||
Reference in New Issue
Block a user