Skip to content

Commit

Permalink
Merge pull request #283 from Labelbox/develop
Browse files Browse the repository at this point in the history
3.4.1
  • Loading branch information
msokoloff1 authored Sep 11, 2021
2 parents cda0b67 + f75d1e3 commit eed72e6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# Version 3.4.1 (2021-09-10)
## Fix
* Iam validation exception message

# Version 3.4.0 (2021-09-10)
## Added
* New `IAMIntegration` entity
Expand Down
2 changes: 1 addition & 1 deletion labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "labelbox"
__version__ = "3.4.0"
__version__ = "3.4.1"

from labelbox.schema.project import Project
from labelbox.client import Client
Expand Down
2 changes: 1 addition & 1 deletion labelbox/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ def create_dataset(self, iam_integration=IAMIntegration._DEFAULT, **kwargs):

if not validation_result['validateDataset']['valid']:
raise labelbox.exceptions.LabelboxError(
f"IAMIntegration {validation_result['validateDataset']['checks']['name']} was not successfully added added to the project."
f"IAMIntegration was not successfully added to the dataset."
)
except Exception as e:
dataset.delete()
Expand Down

0 comments on commit eed72e6

Please sign in to comment.