From 19b304b0fc6f200a738b3181e811056465eafb6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jotag=C3=AA=20Sales?= Date: Wed, 26 Dec 2018 18:31:43 -0200 Subject: [PATCH] fix doc --- docs/sanic/config.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/sanic/config.md b/docs/sanic/config.md index 2b934d71..5fb639f5 100644 --- a/docs/sanic/config.md +++ b/docs/sanic/config.md @@ -56,8 +56,6 @@ app.config.from_object(myapp.default_settings) or also by path to config: ``` -import myapp.default_settings - app = Sanic('myapp') app.config.from_object('config.path.config.Class') ```