Skip to content

Commit

Permalink
Add bookkeepings in client
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed May 23, 2015
1 parent 833e247 commit 72044a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions teambition/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from teambition.api.objectlinks import ObjectLinks # NOQA
from teambition.api.activities import Activities # NOQA
from teambition.api.webhooks import Webhooks # NOQA
from teambition.api.bookkeepings import BookKeepings # NOQA

__all__ = [
'OAuth',
Expand All @@ -39,4 +40,5 @@
'Tags',
'ObjectLinks',
'Activities',
'BookKeepings',
]
2 changes: 2 additions & 0 deletions teambition/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ class Teambition(object):
""":doc:`activities`"""
webhooks = api.Webhooks()
""":doc:`webhooks`"""
bookkeepings = api.BookKeepings()
""":doc:`bookkeepings`"""

def __new__(cls, *args, **kwargs):
self = super(Teambition, cls).__new__(cls)
Expand Down

0 comments on commit 72044a6

Please sign in to comment.