From 1684566be5d4b3e93565da14f1166f37df6e0374 Mon Sep 17 00:00:00 2001 From: Bas Couwenberg Date: Thu, 2 May 2019 10:31:28 +0200 Subject: [PATCH] flake8: F401 '' imported but unused. --- data/scripts/migrator/dbsmerge_mongo.py | 2 -- data/scripts/migrator/dbsmerge_redis.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/data/scripts/migrator/dbsmerge_mongo.py b/data/scripts/migrator/dbsmerge_mongo.py index 316048985..7ccee336f 100755 --- a/data/scripts/migrator/dbsmerge_mongo.py +++ b/data/scripts/migrator/dbsmerge_mongo.py @@ -6,8 +6,6 @@ # ^ the script will "move" the collections if source and target server are the same # but will "copy" (dump/restore) if source and target servers are different -import os -import shutil import subprocess import sys from collections import OrderedDict diff --git a/data/scripts/migrator/dbsmerge_redis.py b/data/scripts/migrator/dbsmerge_redis.py index 43eafc454..5abb95403 100755 --- a/data/scripts/migrator/dbsmerge_redis.py +++ b/data/scripts/migrator/dbsmerge_redis.py @@ -8,8 +8,6 @@ # behaviour: # ^ the script will not overwrite keys on the destination server/database -import time - import redis from_host = '127.0.0.1'