cubicweb/repoapi.py
changeset 12046 9056a41d91ba
parent 12044 70bb46dfa87b
child 12508 a8c1ea390400
--- a/cubicweb/repoapi.py	Fri Mar 10 18:18:51 2017 +0100
+++ b/cubicweb/repoapi.py	Fri Mar 10 18:21:22 2017 +0100
@@ -15,8 +15,8 @@
 #
 # You should have received a copy of the GNU Lesser General Public License along
 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
-"""Official API to access the content of a repository
-"""
+"""Official API to access the content of a repository."""
+
 from warnings import warn
 
 from six import add_metaclass
@@ -27,8 +27,6 @@
 from cubicweb.server.session import Connection
 
 
-### public API ######################################################
-
 def get_repository(uri=None, config=None, vreg=None):
     """get a repository for the given URI or config/vregistry (in case we're
     loading the repository for a client, eg web server, configuration).
@@ -42,6 +40,7 @@
     assert config is not None, 'get_repository(config=config)'
     return config.repository(vreg)
 
+
 def connect(repo, login, **kwargs):
     """Take credential and return associated Connection.
 
@@ -59,7 +58,7 @@
     raises an AuthenticationError if anonymous usage is not allowed
     """
     anoninfo = getattr(repo.config, 'anonymous_user', lambda: None)()
-    if anoninfo is None: # no anonymous user
+    if anoninfo is None:  # no anonymous user
         raise AuthenticationError('anonymous access is not authorized')
     anon_login, anon_password = anoninfo
     # use vreg's repository cache