Fixed line length and indentation of imports

This commit is contained in:
Daniel Neuhäuser 2010-07-25 19:53:57 +02:00
parent d718363908
commit 0672a8e379
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
from datetime import datetime
from sqlalchemy import Column, Integer, Text, String, Boolean, ForeignKey,\
DateTime
DateTime
from sqlalchemy.schema import UniqueConstraint
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relation, sessionmaker

View File

@ -1,7 +1,8 @@
from datetime import datetime
from sphinx.websupport.comments import StorageBackend
from sphinx.websupport.comments.db import Base, Node, Comment, CommentVote, Session
from sphinx.websupport.comments.db import Base, Node, Comment, CommentVote,\
Session
class SQLAlchemyStorage(StorageBackend):
def __init__(self, engine):