Skip to content

Commit

Permalink
Merge pull request #15 from Arlula/4.0.1
Browse files Browse the repository at this point in the history
4.0.1 - Bug fix for __repr__
  • Loading branch information
martejj authored Sep 2, 2024
2 parents 81fb7f1 + 475b8dc commit eaeb823
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arlulacore/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
name = "arlulacore"

# User agent setting
sdk_version = "4.0.0"
sdk_version = "4.0.1"
py_version = sys.version.split(' ')[0]
os_version = platform.platform()
def_ua = "core-sdk " + \
Expand Down
2 changes: 1 addition & 1 deletion arlulacore/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ArlulaObject(abc.ABC):
def __repr__(self):
return str(['{}: {}'.format(attr, value) for attr, value in self.__dict__.items()])[1:-1].replace('\'', '')
return str(['{}: {}'.format(attr, value) for attr, value in self.__dict__().items()])[1:-1].replace('\'', '')

def format(self, format: str) -> str:
if format == "json":
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='arlulacore',
version='4.0.0',
version='4.0.1',
author="Arlula",
author_email="[email protected]",
description="A package to facilitate access to the Arlula Imagery Marketplace API",
Expand Down

0 comments on commit eaeb823

Please sign in to comment.