diff --git a/methods.py b/methods.py index 30c7c89..e1f9d84 100644 --- a/methods.py +++ b/methods.py @@ -1,8 +1,5 @@ import subprocess -import re -import time from getpass import getpass -from argparse import ArgumentParser from pathlib import Path from typing import Optional @@ -43,4 +40,4 @@ def add_to_transmission(add: Path, download_dir: Path, username: str, password: capture_output=True, check=True, ) - return cp.stdout \ No newline at end of file + return cp.stdout diff --git a/tfdatafinder.py b/tfdatafinder.py index 2446c84..03cc17f 100644 --- a/tfdatafinder.py +++ b/tfdatafinder.py @@ -58,4 +58,4 @@ def guess_tracker(path, read_len: int = 100) -> Optional[str]: ) if tracker: return tracker.group(1) - return None \ No newline at end of file + return None