mirror of https://github.com/zulip/zulip.git
Fix mypy error in AdminNotifyHandler.emit().
This commit is contained in:
parent
ac6f3373b6
commit
c33102f692
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue