From 19cb64df5d9548596ddb4875f6682e11ac436517 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 12 Jan 2017 13:43:49 -0500 Subject: [PATCH] Remove unused class --- data/queue.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/data/queue.py b/data/queue.py index 303a2706a..7cdd4e13a 100644 --- a/data/queue.py +++ b/data/queue.py @@ -9,14 +9,6 @@ MINIMUM_EXTENSION = timedelta(seconds=20) DEFAULT_BATCH_SIZE = 1000 -class NoopWith: - def __enter__(self): - pass - - def __exit__(self, type, value, traceback): - pass - - class BuildMetricQueueReporter(object): """ Metric queue reporter for the build system. """ def __init__(self, metric_queue):