From 7fb6d26cc74dbfefc2f8de4833a08b5a7c970c45 Mon Sep 17 00:00:00 2001 From: "Christopher K. Hoadley" Date: Wed, 30 Jan 2019 18:37:03 -0600 Subject: [PATCH] Previous code was failing the flake8 tests because the random module was not imported. --- sherlock.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sherlock.py b/sherlock.py index adc942d6..03d5407b 100644 --- a/sherlock.py +++ b/sherlock.py @@ -13,6 +13,7 @@ import os import platform import re import sys +import random from argparse import ArgumentParser, RawDescriptionHelpFormatter from concurrent.futures import ThreadPoolExecutor from time import time