support/scripts/check-uniq-files: remove csv module import

Since commit 5563a1c6a4
("support/check-uniq-files: support weird locales and filenames"), the
'csv' Python module is no longer used by the check-uniq-files.

Due to this, flake8 complains with:

support/scripts/check-uniq-files:4:1: F401 'csv' imported but unused

Fix this by dropping the useless csv import.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Thomas Petazzoni 2018-04-25 21:19:22 +02:00
parent babc94e9dd
commit 34d32e911f

View File

@ -1,7 +1,6 @@
#!/usr/bin/env python
import sys
import csv
import argparse
from collections import defaultdict