diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-17 20:24:14 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-07-17 20:24:14 -0400 |
| commit | 02ebb4943914ab691276d990c6aa019d7cb90659 (patch) | |
| tree | c9e6b5158b1c353962fdad75f3d079516602c426 /lib/sqlalchemy/ext/hybrid.py | |
| parent | de115ae40695d8e9fa6d85c629222bec2ea01ff6 (diff) | |
| download | sqlalchemy-02ebb4943914ab691276d990c6aa019d7cb90659.tar.gz | |
- move ext to relative imports
Diffstat (limited to 'lib/sqlalchemy/ext/hybrid.py')
| -rw-r--r-- | lib/sqlalchemy/ext/hybrid.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/ext/hybrid.py b/lib/sqlalchemy/ext/hybrid.py index ebf061645..9fb0ee763 100644 --- a/lib/sqlalchemy/ext/hybrid.py +++ b/lib/sqlalchemy/ext/hybrid.py @@ -540,8 +540,8 @@ While it's only recommended for advanced and/or patient developers, there's probably a whole lot of amazing things it can be used for. """ -from sqlalchemy import util -from sqlalchemy.orm import attributes, interfaces +from .. import util +from ..orm import attributes, interfaces class hybrid_method(object): """A decorator which allows definition of a Python object method with both |
