File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
intelmq/bots/outputs/smtp_batch Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
import sys
9
9
from tempfile import NamedTemporaryFile
10
10
import time
11
- from typing import Any , Generator , Optional
11
+ from typing import Any , Generator , Optional , Dict
12
12
import zipfile
13
13
from base64 import b64decode
14
14
from collections import OrderedDict
@@ -50,13 +50,13 @@ class Mail:
50
50
to : str
51
51
path : str
52
52
count : int
53
- template_data : dict [str ,Any ]
53
+ template_data : Dict [str ,Any ]
54
54
55
55
56
56
class SMTPBatchOutputBot (Bot ):
57
57
# configurable parameters
58
58
additional_grouping_keys : Optional [list ] = [] # refers to the event directly
59
- templating : Optional [dict [str , bool ]] = {'subject' : False , 'body' : False , 'attachment' : False }
59
+ templating : Optional [Dict [str , bool ]] = {'subject' : False , 'body' : False , 'attachment' : False }
60
60
alternative_mails : Optional [str ] = None
61
61
bcc : Optional [list ] = None
62
62
email_from : str = ""
You can’t perform that action at this time.
0 commit comments