diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2019-05-08 12:21:07 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2019-05-08 12:21:07 +0200 |
commit | 8474796870fb0ff54274e54fb980091c963d7a93 (patch) | |
tree | f3d953a69a58f59c22ae4b614457dc9c46e227eb /archive_folder.py | |
parent | 1ac30d1c2f9e990c0a4e1f005a5c5fd0d5fb9ce3 (diff) | |
download | imapArch-8474796870fb0ff54274e54fb980091c963d7a93.tar.gz |
Fix import in typehint
Diffstat (limited to 'archive_folder.py')
-rwxr-xr-x | archive_folder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archive_folder.py b/archive_folder.py index 4e0f8eb..37eba50 100755 --- a/archive_folder.py +++ b/archive_folder.py @@ -244,7 +244,7 @@ class EmailServer(object): return config def archive_folder(self, folder_name, before_date): - # type: (str, datetime.date) -> None + # type: (str, date) -> None """ Archive one folder to the proper archiving positioins. |