From c52dc45bed3db0fdb5a37c0245e807f76065b163 Mon Sep 17 00:00:00 2001 From: Aaron Griffith Date: Mon, 20 May 2013 20:48:04 -0400 Subject: [PATCH] removed bit about __init__.py --- docs/faq.rst | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index 2e4ec6e..ad60724 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -196,8 +196,9 @@ As always, if you need assistance, come chat with us on :ref:`irc`. I want to put manual POI definitions or other parts of my config into a seperate file ------------------------------------------------------------------------------------- -This can be achieved by creating a module and then importing it in your config. -First, create a file containing your markers definitions. We'll call it ``manualmarkers.py``. +This can be achieved by creating a module and then importing it in +your config. First, create a file containing your markers +definitions. We'll call it ``manualmarkers.py``. :: @@ -205,11 +206,8 @@ First, create a file containing your markers definitions. We'll call it ``manual {'id':'town', 'x':500, 'y':70, 'z': 100, 'name':'brownotopia' }] -Then, add another file in the same directory as ``manualmarkers.py``, called ``__init__.py``. -Just leave it empty. - -The final step is to import the very basic module you've just created into your config. -In your config, do the following +The final step is to import the very basic module you've just created +into your config. In your config, do the following ::