]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
go along with sphinx and put the init params in the class docs
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 17 Nov 2011 19:21:27 +0000 (14:21 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 17 Nov 2011 19:21:27 +0000 (14:21 -0500)
alembic/config.py

index 8957ac0b61cb6a0ad66b4984c1d765e4868dac09..e6867495b8e4d6a7df09ad1337423490b291c3c5 100644 (file)
@@ -25,17 +25,16 @@ class Config(object):
     run Alembic commands programmatically using the directives
     in :mod:`alembic.command`.
 
+    :param file_: name of the .ini file to open.
+    :param ini_section: name of the main Alembic section within the 
+     .ini file
+    :param output_buffer: optional file-like input buffer which
+     will be passed to the :class:`.Context` - used to redirect
+     access when using Alembic programmatically.
     """
     def __init__(self, file_, ini_section='alembic', output_buffer=None):
         """Construct a new :class:`.Config`
         
-        :param file_: name of the .ini file to open.
-        :param ini_section: name of the main Alembic section within the 
-         .ini file
-        :param output_buffer: optional file-like input buffer which
-         will be passed to the :class:`.Context` - used to redirect
-         access when using Alembic programmatically.
-
         """
         self.config_file_name = file_
         self.config_ini_section = ini_section