Skip to content

Commit 1519fcb

Browse files
committed
Done
1 parent c8621be commit 1519fcb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tonic-textual"
3-
version = "3.0.2"
3+
version = "3.0.3"
44
description = "Wrappers around the Tonic Textual API"
55
authors = ["Adam Kamor <adam@tonic.ai>", "Joe Ferrara <joeferrara@tonic.ai>", "Ander Steele <ander@tonic.ai>", "Ethan Philpott <ephilpott@tonic.ai>", "Lyon Van Voorhis <lyon@tonic.ai>", "Kirill Medvedev <kirill@tonic.ai>", "Travis Matthews <travis@tonic.ai>"]
66
license = "MIT"

tonic_textual/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.2"
1+
__version__ = "3.0.3"

tonic_textual/classes/redact_api_responses/bulk_redaction_response.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ class BulkRedactionResponse(dict):
88
99
Attributes
1010
----------
11-
bulk_text : str
11+
bulk_text : List[str]
1212
The original text.
13-
bulk_redacted_text : str
13+
bulk_redacted_text : List[str]
1414
The redacted and synthesized text.
1515
usage : int
1616
The number of words used
@@ -20,8 +20,8 @@ class BulkRedactionResponse(dict):
2020

2121
def __init__(
2222
self,
23-
bulk_text: str,
24-
bulk_redacted_text: str,
23+
bulk_text: List[str],
24+
bulk_redacted_text: List[str],
2525
usage: int,
2626
de_identify_results: List[Replacement],
2727
):

0 commit comments

Comments
 (0)