Skip to content

Commit ba5a500

Browse files
authored
Merge pull request #122 from Labelbox/develop
2.5.1
2 parents ba990b3 + e1982dc commit ba5a500

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Version 2.5.0 (2021-03-15)
3+
## Version 2.5.1 (2021-03-15)
44
### Fix
55
* `Dataset.data_row_for_external_id` No longer throws `ResourceNotFoundError` when there are duplicates
66
* Improved doc strings

docs/source/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#
1313
import os
1414
import sys
15+
1516
sys.path.insert(0, os.path.abspath('../..'))
1617

1718
# -- Project information -----------------------------------------------------

labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "labelbox"
2-
__version__ = "2.5.0"
2+
__version__ = "2.5.1"
33

44
from labelbox.client import Client
55
from labelbox.schema.bulk_import_request import BulkImportRequest

labelbox/schema/webhook.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,7 @@ def update(self, topics=None, url=None, status=None):
121121
topics (Optional[List[Topic]]): The new topics.
122122
url Optional[str): The new URL value.
123123
status (Optional[Status]): The new status.
124-
125-
If values are set to None then there are no updates made to that field.
124+
If an argument is set to None then no updates will be made to that field.
126125
127126
"""
128127

0 commit comments

Comments
 (0)