mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fixed line length and indentation of imports
This commit is contained in:
parent
d718363908
commit
0672a8e379
@ -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
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user