diff options
| author | Brian Jarrett <celttechie@gmail.com> | 2014-07-10 16:28:49 -0600 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-13 20:10:55 -0400 |
| commit | 28dd15081db4b7e978fa7a187c3aef1c0e4ad4e3 (patch) | |
| tree | af5aeebb0cece4afc8e12e3329d3f75715bf32a2 /lib/sqlalchemy/__init__.py | |
| parent | 0190ede10767ed455255067cac2d309f070cf70c (diff) | |
| download | sqlalchemy-28dd15081db4b7e978fa7a187c3aef1c0e4ad4e3.tar.gz | |
PEP8 style fixes
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index d55b8ba66..2ab717996 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -119,6 +119,7 @@ from .engine import create_engine, engine_from_config __version__ = '1.0.0' + def __go(lcls): global __all__ @@ -128,7 +129,7 @@ def __go(lcls): import inspect as _inspect __all__ = sorted(name for name, obj in lcls.items() - if not (name.startswith('_') or _inspect.ismodule(obj))) + if not (name.startswith('_') or _inspect.ismodule(obj))) _sa_util.dependencies.resolve_all("sqlalchemy") -__go(locals())
\ No newline at end of file +__go(locals()) |
