From: Neil Smith Date: Tue, 15 Jul 2014 07:32:06 +0000 (+0100) Subject: Removed unnecessary imports X-Git-Url: https://git.njae.me.uk/?a=commitdiff_plain;h=07c3f8b652e218c94ad2a0dd1fb4657be4c6fe17;p=cipher-training.git Removed unnecessary imports --- diff --git a/cipher.py b/cipher.py index f71d1c1..a511e24 100644 --- a/cipher.py +++ b/cipher.py @@ -5,7 +5,6 @@ them. See cipherbreak for automatic breaking of these ciphers import string import collections from enum import Enum -from itertools import zip_longest, cycle, chain from language_models import unaccent, sanitise diff --git a/cipherbreak.py b/cipherbreak.py index f4c9c03..704595a 100644 --- a/cipherbreak.py +++ b/cipherbreak.py @@ -5,8 +5,6 @@ import string import collections import norms import logging -import random -import math from itertools import starmap from segment import segment from multiprocessing import Pool