From 07c3f8b652e218c94ad2a0dd1fb4657be4c6fe17 Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Tue, 15 Jul 2014 08:32:06 +0100 Subject: [PATCH] Removed unnecessary imports --- cipher.py | 1 - cipherbreak.py | 2 -- 2 files changed, 3 deletions(-) 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 -- 2.34.1