From c84462bfbc82c79d668df4cf4235f7e0f56c6fb7 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Tue, 12 May 2020 22:06:19 +0100 Subject: [PATCH] Remove unnecessary import --- jellyfin_accounts/pw_reset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jellyfin_accounts/pw_reset.py b/jellyfin_accounts/pw_reset.py index d7b021a..c46cd37 100755 --- a/jellyfin_accounts/pw_reset.py +++ b/jellyfin_accounts/pw_reset.py @@ -1,6 +1,5 @@ import time import json -import platform from watchdog.observers import Observer from watchdog.events import FileSystemEventHandler from jellyfin_accounts.email import Mailgun, Smtp @@ -9,6 +8,7 @@ from __main__ import config from __main__ import email_log as log + class Watcher: def __init__(self, dir): self.observer = Observer()