support/scripts/check-uniq-files: remove csv module import
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Wed, 25 Apr 2018 19:19:22 +0000 (21:19 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Wed, 25 Apr 2018 19:19:22 +0000 (21:19 +0200)
Since commit 5563a1c6a48716debe2983869ddb757318094dce
("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>
support/scripts/check-uniq-files

index f11017627439f2ad396bb50d87cc52f7b07265c5..fbc6b5d6e7a888bec2819fd7a7dcf99f459d6381 100755 (executable)
@@ -1,7 +1,6 @@
 #!/usr/bin/env python
 
 import sys
-import csv
 import argparse
 from collections import defaultdict