Skip to content

Commit

Permalink
Refix issue 28
Browse files Browse the repository at this point in the history
  • Loading branch information
SenadI committed Aug 29, 2016
1 parent 1f99ea5 commit 6de8549
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from setuptools import setup, find_packages

version = "0.5.0"
version = "0.5.1"

install_requires = []

Expand Down
2 changes: 1 addition & 1 deletion sevenbridges/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:license: Apache 2.0
"""

__version__ = "0.5.0"
__version__ = "0.5.1"

from sevenbridges.api import Api
from sevenbridges.config import Config
Expand Down
8 changes: 4 additions & 4 deletions sevenbridges/models/volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,14 @@ def get_imports(self, project=None, state=None, offset=None, limit=None):
return self._api.imports.query(volume=self, project=project,
state=state, offset=offset, limit=limit)

def get_exports(self, project=None, state=None, offset=None, limit=None):
def get_exports(self, state=None, offset=None, limit=None):
"""
Fetches exports for this volume.
:param project: Optional project identifier.
:param state: Optional state.
:param offset: Pagination offset.
:param limit: Pagination limit.
:return: Collection object.
"""
return self._api.exports.query(volume=self, project=project,
state=state, offset=offset, limit=limit)
return self._api.exports.query(volume=self, state=state, offset=offset,
limit=limit
)

0 comments on commit 6de8549

Please sign in to comment.