Removed extraneous import.

This commit is contained in:
Arceliar 2013-05-30 17:41:08 +02:00
parent da0b771e35
commit 74b94e7571
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ def _pool_worker(nonce, initialHash, target, pool_size):
return [trialValue, nonce]
def run(target, initialHash):
from multiprocessing import Pool, cpu_count, Value
from multiprocessing import Pool, cpu_count
import time
try:
pool_size = cpu_count()