Skip to content
This repository has been archived by the owner on May 21, 2020. It is now read-only.

Commit

Permalink
re-order imports and module properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Söndergaard committed Mar 2, 2015
1 parent a8677ad commit 46823a6
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions couch/couch.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,6 @@
for making blocking and non-blocking operations on a CouchDB.
"""


__all__ = ["BlockingCouch", "AsyncCouch", "CouchException", "NotModified",
"BadRequest", "NotFound", "MethodNotAllowed", "Conflict",
"PreconditionFailed", "InternalServerError"]

__version__ = '0.2.3'


import copy
import functools

Expand All @@ -22,6 +14,13 @@
from tornado.escape import json_decode, json_encode, url_escape


__all__ = ["BlockingCouch", "AsyncCouch", "CouchException", "NotModified",
"BadRequest", "NotFound", "MethodNotAllowed", "Conflict",
"PreconditionFailed", "InternalServerError"]

__version__ = '0.2.3'


class AsyncCouch(object):
"""Basic wrapper class for asynchronous operations on a CouchDB
Expand Down

0 comments on commit 46823a6

Please sign in to comment.