Skip to content

Commit

Permalink
Lint + remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sdfordham committed Nov 20, 2022
1 parent 6ab5f5b commit fc5866e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions methods.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -43,4 +40,4 @@ def add_to_transmission(add: Path, download_dir: Path, username: str, password:
capture_output=True,
check=True,
)
return cp.stdout
return cp.stdout
2 changes: 1 addition & 1 deletion tfdatafinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ def guess_tracker(path, read_len: int = 100) -> Optional[str]:
)
if tracker:
return tracker.group(1)
return None
return None

0 comments on commit fc5866e

Please sign in to comment.