aboutsummaryrefslogtreecommitdiffstats
path: root/python/exchange.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/exchange.py')
-rw-r--r--python/exchange.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/exchange.py b/python/exchange.py
index efb36d40..0ace50ec 100644
--- a/python/exchange.py
+++ b/python/exchange.py
@@ -7,7 +7,7 @@ from exchangelib import (
FileAttachment,
)
from pathlib import Path
-from typing import Tuple
+from typing import Iterable
import json
@@ -45,7 +45,7 @@ class ExchangeMessage:
body,
to_recipients,
cc_recipients,
- attach: Tuple[FileAttachment] = (),
+ attach: Iterable[FileAttachment] = (),
):
m = Message(
account=self._account,