From b0cf197a5500e3e85df83eeee5d1cd28bfbfcb0c Mon Sep 17 00:00:00 2001 From: Chang She Date: Tue, 10 May 2022 13:32:46 -0700 Subject: [PATCH] lint fix --- docs/examples/consumer.py | 2 ++ docs/examples/producer.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docs/examples/consumer.py b/docs/examples/consumer.py index bb1a58e75..a0d1a6a43 100644 --- a/docs/examples/consumer.py +++ b/docs/examples/consumer.py @@ -3,11 +3,13 @@ schema = Schema("hello_world") + @schema.define class Message: timestamp = float message = str + db = connect('localhost', 8000, 'TOKEN') db.subscribeToSchema(schema) diff --git a/docs/examples/producer.py b/docs/examples/producer.py index a81dc0221..6f0c45ae4 100644 --- a/docs/examples/producer.py +++ b/docs/examples/producer.py @@ -3,11 +3,13 @@ schema = Schema("hello_world") + @schema.define class Message: timestamp = float message = str + db = connect('localhost', 8000, 'TOKEN') db.subscribeToSchema(schema)