From f606420d7823b29e5fb359d5bf91c87b0d4006f1 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Thu, 1 Apr 2021 10:14:05 -0400 Subject: [PATCH] Make it new-style. --- src/allmydata/test/test_consumer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/test/test_consumer.py b/src/allmydata/test/test_consumer.py index b6c1d1d28..46b87e477 100644 --- a/src/allmydata/test/test_consumer.py +++ b/src/allmydata/test/test_consumer.py @@ -22,7 +22,7 @@ from allmydata.util.consumer import MemoryConsumer, download_to_data @implementer(IPushProducer) @implementer(IPullProducer) -class Producer: +class Producer(object): """Can be used as either streaming or non-streaming producer. If used as streaming, the test should call iterate() manually.