From 7805d53bcf11199bd1f2b07e05ae90151f9d0eb0 Mon Sep 17 00:00:00 2001 From: Tom V Date: Wed, 16 Sep 2020 07:21:42 +0100 Subject: [PATCH] Fix accidental mega long line in docs (#158) Thanks @tomviner --- docs/python-api.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/python-api.rst b/docs/python-api.rst index d070b86..b1c2e0d 100644 --- a/docs/python-api.rst +++ b/docs/python-api.rst @@ -431,7 +431,8 @@ Here's an example that uses these features: # Outputs: # [{'id': 1, 'name': 'Sally', 'score': 2}, # {'id': 3, 'name': 'Dharma', 'score': 1}] - print(db["authors"].schema) # Outputs: + print(db["authors"].schema) + # Outputs: # CREATE TABLE [authors] ( # [id] INTEGER PRIMARY KEY, # [name] TEXT NOT NULL,