summaryrefslogtreecommitdiff
path: root/sphinx/websupport
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/websupport')
-rw-r--r--sphinx/websupport/__init__.py6
-rw-r--r--sphinx/websupport/storage/sqlalchemy_db.py10
-rw-r--r--sphinx/websupport/storage/sqlalchemystorage.py4
3 files changed, 10 insertions, 10 deletions
diff --git a/sphinx/websupport/__init__.py b/sphinx/websupport/__init__.py
index 69914da95..f7b215f83 100644
--- a/sphinx/websupport/__init__.py
+++ b/sphinx/websupport/__init__.py
@@ -66,7 +66,7 @@ class WebSupport(object):
self._init_search(search)
self._init_storage(storage)
- self._globalcontext = None
+ self._globalcontext = None # type: ignore
self._make_base_comment_options()
@@ -119,7 +119,7 @@ class WebSupport(object):
raise RuntimeError('No srcdir associated with WebSupport object')
app = Sphinx(self.srcdir, self.srcdir, self.outdir, self.doctreedir,
'websupport', status=self.status, warning=self.warning)
- app.builder.set_webinfo(self.staticdir, self.staticroot,
+ app.builder.set_webinfo(self.staticdir, self.staticroot, # type: ignore
self.search, self.storage)
self.storage.pre_build()
@@ -384,7 +384,7 @@ class WebSupport(object):
that remains the same throughout the lifetime of the
:class:`~sphinx.websupport.WebSupport` object.
"""
- self.base_comment_opts = {}
+ self.base_comment_opts = {} # type: Dict[unicode, unicode]
if self.docroot != '':
comment_urls = [
diff --git a/sphinx/websupport/storage/sqlalchemy_db.py b/sphinx/websupport/storage/sqlalchemy_db.py
index b412ad488..16418ec8f 100644
--- a/sphinx/websupport/storage/sqlalchemy_db.py
+++ b/sphinx/websupport/storage/sqlalchemy_db.py
@@ -14,7 +14,7 @@ from datetime import datetime
from sqlalchemy import Column, Integer, Text, String, Boolean, \
ForeignKey, DateTime
-from sqlalchemy.orm import relation, sessionmaker, aliased
+from sqlalchemy.orm import relation, sessionmaker, aliased # type: ignore
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
@@ -23,7 +23,7 @@ Session = sessionmaker()
db_prefix = 'sphinx_'
-class Node(Base):
+class Node(Base): # type: ignore
"""Data about a Node in a doctree."""
__tablename__ = db_prefix + 'nodes'
@@ -74,7 +74,7 @@ class Node(Base):
:param results: the flat list of comments
:param username: the name of the user requesting the comments.
"""
- comments = []
+ comments = [] # type: List
list_stack = [comments]
for r in results:
if username:
@@ -101,7 +101,7 @@ class Node(Base):
self.source = source
-class CommentVote(Base):
+class CommentVote(Base): # type: ignore
"""A vote a user has made on a Comment."""
__tablename__ = db_prefix + 'commentvote'
@@ -117,7 +117,7 @@ class CommentVote(Base):
self.value = value
-class Comment(Base):
+class Comment(Base): # type: ignore
"""An individual Comment being stored."""
__tablename__ = db_prefix + 'comments'
diff --git a/sphinx/websupport/storage/sqlalchemystorage.py b/sphinx/websupport/storage/sqlalchemystorage.py
index c8794f75c..8b7d76714 100644
--- a/sphinx/websupport/storage/sqlalchemystorage.py
+++ b/sphinx/websupport/storage/sqlalchemystorage.py
@@ -12,7 +12,7 @@
from datetime import datetime
import sqlalchemy
-from sqlalchemy.orm import aliased
+from sqlalchemy.orm import aliased # type: ignore
from sqlalchemy.sql import func
from sphinx.websupport.errors import CommentNotAllowedError, \
@@ -22,7 +22,7 @@ from sphinx.websupport.storage.sqlalchemy_db import Base, Node, \
Comment, CommentVote, Session
from sphinx.websupport.storage.differ import CombinedHtmlDiff
-if sqlalchemy.__version__[:3] < '0.5':
+if sqlalchemy.__version__[:3] < '0.5': # type: ignore
raise ImportError('SQLAlchemy version 0.5 or greater is required for this '
'storage backend; you have version %s' % sqlalchemy.__version__)