Skip to content

Commit

Permalink
Extend get by id for admin expense fields (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwin1111 authored Jun 8, 2022
1 parent 83a77e8 commit 3f814f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion fyle/platform/apis/v1beta/admin/expense_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
from ....internals.list_all_resources import ListAllResources
from ....internals.list_resources import ListResources
from ....internals.post_resources import PostResources
from ....internals.get_resources import GetResources


class ExpenseFields(ListResources, ListAllResources, PostResources):
class ExpenseFields(ListResources, ListAllResources, PostResources, GetResources):
"""Class for Expense Fields APIs."""

EXPENSE_FIELDS = '/expense_fields'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='fyle',
version='v0.27.0',
version='v0.28.0',
author='Siva Narayanan',
author_email='[email protected]',
description='Python SDK for accessing Fyle Platform APIs',
Expand Down

0 comments on commit 3f814f4

Please sign in to comment.