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:
parent
57929a1c60
commit
ad0d06cced
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue