Issues (77)

osmalchemy/__init__.py (2 issues)

1
# ~*~~ coding: utf-8 ~*~
0 ignored issues
show
This module should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
2
3
# Define the version of OSMAlchemy
4 1
__version__ = "0.1.post1"
5 1
6
# Monkey patch SQLAlchemy to support some query constructs
7 1
from .util.patch import monkey_patch_sqlalchemy, monkey_patch_flask_restless
8
monkey_patch_sqlalchemy()
9
monkey_patch_flask_restless()
10
11
from .osmalchemy import OSMAlchemy
0 ignored issues
show
Import "from .osmalchemy import OSMAlchemy" should be placed at the top of the module
Loading history...
12