From 7ad30b99f1d5ccac8a20854c2cfa801fdad0db54 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Mon, 19 Apr 2021 22:19:47 -0400 Subject: [PATCH] chore: remove unused threading imports --- src/plotman/interactive.py | 1 - src/plotman/job.py | 1 - src/plotman/manager.py | 1 - 3 files changed, 3 deletions(-) diff --git a/src/plotman/interactive.py b/src/plotman/interactive.py index 321aa14c..d10a2b22 100644 --- a/src/plotman/interactive.py +++ b/src/plotman/interactive.py @@ -4,7 +4,6 @@ import math import os import subprocess -import threading from plotman import archive, configuration, manager, reporting from plotman.job import Job diff --git a/src/plotman/job.py b/src/plotman/job.py index 6314d168..14c9af59 100644 --- a/src/plotman/job.py +++ b/src/plotman/job.py @@ -6,7 +6,6 @@ import random import re import sys -import threading import time from datetime import datetime from enum import Enum, auto diff --git a/src/plotman/manager.py b/src/plotman/manager.py index 19a45d63..a5c9a665 100644 --- a/src/plotman/manager.py +++ b/src/plotman/manager.py @@ -6,7 +6,6 @@ import readline # For nice CLI import subprocess import sys -import threading import time from datetime import datetime