Remove unnecessary import of os.path

We import os, so there's no need to import os.path.
This fixes the following pylint warning:
C: 53, 0: Imports from package os are not grouped (ungrouped-imports)

Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
David A. Wheeler 2017-08-26 10:55:02 -04:00
parent 57929a1c60
commit ad0d06cced
1 changed files with 0 additions and 1 deletions

View File

@ -50,7 +50,6 @@ import pickle # To support load/save/diff of hitlist
import os
import glob
import operator # To support filename expansion on Windows
import os.path
import time
import csv # To support generating CSV format
import hashlib