You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/06/06 10:52:50 UTC

[incubator-ponymail-foal] branch master updated: missing dep for mypy

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new 5024b19  missing dep for mypy
5024b19 is described below

commit 5024b19cf411029e57f6fe617b592043f0efc6e4
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Sun Jun 6 12:52:46 2021 +0200

    missing dep for mypy
---
 server/endpoints/stats.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/server/endpoints/stats.py b/server/endpoints/stats.py
index 0664032..d7d044b 100644
--- a/server/endpoints/stats.py
+++ b/server/endpoints/stats.py
@@ -24,6 +24,7 @@ import plugins.defuzzer
 import plugins.offloader
 import re
 import email.utils
+import typing
 import aiohttp.web
 
 PYPONY_RE_PREFIX = re.compile(r"^([a-zA-Z]+:\s*)+")