Skip to content

Commit fe9ebb7

Browse files
author
AJ (Ashitosh Jedhe)
committed
Fix line too long (lint)
1 parent 34ea19a commit fe9ebb7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

presidio-analyzer/presidio_analyzer/chunkers/character_based_text_chunker.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def __init__(
4747

4848
self._chunk_size = chunk_size
4949
self._chunk_overlap = chunk_overlap
50-
# Allow callers to tune boundaries (e.g., punctuation, tabs) without changing defaults.
50+
# Allow callers to tune boundaries
51+
# (e.g., punctuation, tabs) without changing defaults.
5152
self._boundary_chars: Tuple[str, ...] = (
5253
tuple(boundary_chars) if boundary_chars is not None else WORD_BOUNDARY_CHARS
5354
)

0 commit comments

Comments
 (0)