Skip to content

Commit

Permalink
docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Apr 3, 2017
1 parent c1712c5 commit 772326a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
4 changes: 0 additions & 4 deletions biweeklybudget/models/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,6 @@ def is_budget_source(self):

@is_budget_source.expression
def is_budget_source(cls):
"""
Return SQL for whether or not this account should be considered a
funding source for Budgets.
"""
return or_(
cls.acct_type.__eq__(AcctType.Bank),
cls.acct_type.__eq__(AcctType.Cash),
Expand Down
6 changes: 0 additions & 6 deletions biweeklybudget/models/scheduled_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,6 @@ def recurrence_str(self):

@recurrence_str.expression
def recurrence_str(cls):
"""
SQL expression for ``recurrence_str``.
"""
return case(
[
(
Expand Down Expand Up @@ -175,9 +172,6 @@ def schedule_type(self):

@schedule_type.expression
def schedule_type(cls):
"""
SQL Expression for ``schedule_type``.
"""
return case(
[
(cls.date.isnot(None), 'date'),
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
intersphinx_mapping = {
'https://docs.python.org/3/': None,
'sqlalchemy': (
'http://docs.sqlalchemy.org/en/latest/objects.inv', None
'http://docs.sqlalchemy.org/en/latest/', None
),
'selenium': ('http://selenium-python.readthedocs.io/', None)
}
Expand Down

0 comments on commit 772326a

Please sign in to comment.